/* =========================================
   JOTA DESATASCOS ALBACETE — Global Styles
   ========================================= */
:root {
  --brand: #13287e;
  --brand-dark: #0a1854;
  --brand2: #0f172a;
  --accent: #28a167;
  --bg: #f4f6fa;
  --white: #ffffff;
  --line: #e2e8f0;
  --text: #1e293b;
  --label: #0f172a;
  --gray: #475569;
}

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

html {
  background-color: #e2e8f0;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--label);
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
  max-width: 1440px;
  background-color: #ffffff;
  box-shadow: 0 0 50px rgba(0,0,0,0.15);
  position: relative;
}

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

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

/* ── PREMIUM CONTENT UTILS ── */
.premium-intro {
  font-size: 20px;
  line-height: 1.6;
  color: var(--label);
  margin-bottom: 30px;
  font-weight: 500;
  border-left: 4px solid var(--brand);
  padding-left: 24px;
}

.img-fluid-content {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
}

.img-about-fluid {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
}

.img-card-fluid {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

@media(max-width: 900px) {
  .img-fluid-content {
    aspect-ratio: 3/2;
    margin-bottom: 16px;
  }
}

/* ── 01 TOPBAR ── */
#topbar {
  background: var(--brand2);
  color: #fff;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}

#topbar .left {
  display: flex;
  align-items: center;
  gap: 18px;
}

#topbar .left i {
  color: var(--accent);
}

#topbar .right {
  display: flex;
  align-items: center;
  gap: 14px;
}

#topbar a {
  color: #fff;
  transition: color .2s;
}

#topbar a:hover {
  color: var(--accent);
}

.topbar-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
}

/* ── 02 NAVBAR ── */
#navbar {
  background: #fff;
  border-bottom: 2px solid var(--line);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 999;
  height: 86px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
}

.logo img {
  max-height: 70px !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.logo-icon {
  background: var(--brand);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon i {
  color: #fff;
  font-size: 20px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-size: 17px;
  font-weight: 900;
  color: var(--brand2);
  letter-spacing: -.02em;
}

.logo-sub {
  font-size: 9px;
  font-weight: 700;
  color: #C2410C;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-links a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand2);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 6px;
  transition: all .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  background: #fff7ed;
}

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 14px rgba(249, 115, 22, .35);
}

.nav-cta:hover {
  background: var(--brand-dark) !important;
  color: #fff !important;
}

#mobile-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--brand2);
  cursor: pointer;
}

#mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
}

#mobile-menu a {
  padding: 10px 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand2);
  border-radius: 8px;
}

#mobile-menu a:hover {
  background: #f8fafc;
  color: var(--brand);
}

#mobile-menu .mob-cta {
  background: var(--brand);
  color: #fff;
  text-align: center;
  border-radius: 30px;
  margin-top: 8px;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  min-height: 380px;
  background-color: var(--brand2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

/* Specific overlay for readability on all heroes */
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 1;
}

.page-header .container,
.page-header>* {
  position: relative;
  z-index: 2;
}

.page-header .section-label {
  display: inline-block;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.page-header h1 {
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 950;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 850px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .5);
  transition: color .2s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, .3);
}

.breadcrumb .current {
  color: var(--brand);
  font-weight: 700;
}

/* ── HERO (home) ── */
#hero {
  min-height: 560px;
  background: var(--brand2);
  background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 40%, rgba(15, 23, 42, 0.3) 100%), url('../img/vehiculos/furgoneta-urbana.webp');
  background-size: cover;
  background-position: center left;
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 55%;
  color: #fff;
}

.hero-tag {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.hero-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .4);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-badge-live .dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

#hero h1 {
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

#hero h1 span {
  color: var(--accent);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

#hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, .95);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 640px;
}

#hero p strong {
  color: #fff;
  border-bottom: 2px solid var(--accent);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.hero-badge i {
  color: #3b82f6;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 18px 36px;
  border-radius: 16px;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .25s;
  box-shadow: 0 8px 30px rgba(249, 115, 22, .4);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.hero-price {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 16px 24px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.hero-price .num {
  font-size: 26px;
  font-weight: 900;
  color: #3b82f6;
  line-height: 1;
}

.hero-price .lbl {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-right-panel {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 36%;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hrp-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hrp-dot {
  width: 44px;
  height: 44px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.hrp-dot i {
  color: #fff;
}

.hrp-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hrp-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: 3px;
}

.hrp-bar-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hrp-bar-row span:last-child {
  color: #22c55e;
}

.hrp-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  overflow: hidden;
}

.hrp-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  width: 90%;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
}

.sdot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--brand);
}

/* ── STAT BAR ── */
#stats {
  background: var(--brand);
  padding: 28px 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
}

.stat-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .25);
}

/* ── SHARED TEXT ── */
.section-tag {
  display: inline-block;
  background: #fff7ed;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.section-tag.dark {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

[style*="background: #0d1624"] .section-tag,
[style*="background: var(--brand2)"] .section-tag,
#footer .section-tag,
#cta-banner .section-tag,
.bg-dark .section-tag,
.bg-navy .section-tag,
.dark-section .section-tag {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.section-h2 {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--brand2);
  margin-bottom: 16px;
}

.section-h2 span {
  color: var(--brand);
}

[style*="background: #0d1624"] .section-h2 span,
[style*="background: var(--brand2)"] .section-h2 span,
#footer .section-h2 span,
#cta-banner .section-h2 span,
.bg-dark .section-h2 span,
.bg-navy .section-h2 span,
.dark-section .section-h2 span,
#testimonials .section-h2 span,
.faq-section .section-h2 span {
  color: var(--accent) !important;
}

#testimonials a {
  color: var(--accent) !important;
  font-weight: 600;
}

/* ── UNIVERSAL DARK SECTION CONTRAST ── */
.bg-navy, .dark-section {
  background-color: var(--brand2) !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

.bg-navy h2, .bg-navy h3, .bg-navy h4,
.dark-section h2, .dark-section h3, .dark-section h4 {
  color: #fff !important;
}

.bg-navy .section-p, .dark-section .section-p {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* FAQ cards inside dark sections */
.bg-navy [style*="background: #fff"], 
.dark-section [style*="background: #fff"] {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.bg-navy [style*="color: var(--dark)"],
.bg-navy [style*="color: var(--gray)"],
.dark-section [style*="color: var(--dark)"],
.dark-section [style*="color: var(--gray)"] {
  color: rgba(255, 255, 255, 0.8) !important;
}
.bg-navy .faq-h3, .dark-section .faq-h3 {
  color: #fff !important;
}
.bg-navy .faq-p, .dark-section .faq-p {
  color: rgba(255, 255, 255, 0.65) !important;
}
.bg-navy i[style*="color:var(--brand);"], 
.dark-section i[style*="color:var(--brand);"] {
  color: var(--accent) !important;
}

.section-p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .section-h2 {
  margin: 12px 0;
}

.section-head .section-p {
  max-width: 580px;
  margin: 0 auto;
}

/* ── ABOUT (home) ── */
#about {
  padding: 80px 60px;
  display: flex;
  gap: 60px;
  align-items: center;
  background: #fff;
}

.about-img {
  flex: 0 0 44%;
  position: relative;
}

.about-img-ph {
  width: 100%;
  height: 400px;
  background: var(--bg);
  border: 2px dashed #c5d0dc;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #8a9bb0;
  font-size: 13px;
  gap: 10px;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -24px;
  background: var(--brand);
  color: #fff;
  padding: 20px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(249, 115, 22, .4);
}

.about-badge-float .big {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.about-badge-float .small {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .85;
}

.about-text {
  flex: 1;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--label);
  margin-bottom: 16px;
  line-height: 1.5;
}

.check-item i {
  color: var(--brand);
  width: 20px;
  margin-top: 3px;
  font-size: 18px;
}

.progress-block {
  margin-bottom: 24px;
}

.progress-block:first-of-type {
  margin-top: 32px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--label);
  margin-bottom: 8px;
}

.progress-bar {
  height: 8px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 4px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--brand2);
  color: var(--brand2);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--brand2);
  color: #fff;
}

/* ── SERVICES ── */
#services {
  padding: 80px 60px;
  background: var(--bg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.svc-card:hover {
  border-color: var(--brand);
  box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
  transform: translateY(-8px);
}

.svc-card.featured::after {
  content: 'RECOMENDADO';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--brand);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 35px;
  transform: rotate(45deg);
}

.svc-icon {
  width: 54px;
  height: 54px;
  background: var(--bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all .3s ease;
}

.svc-card:hover .svc-icon {
  background: var(--brand);
}

.svc-icon i {
  color: var(--brand);
  font-size: 24px;
  transition: all .3s ease;
}

.svc-card:hover .svc-icon i {
  color: #fff;
}

.svc-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand2);
  margin-bottom: 12px;
}

.svc-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.svc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.svc-link i {
  transition: transform .2s;
}

.svc-card:hover .svc-link i {
  transform: translateX(5px);
}

/* ── PROCESS ── */
#process {
  padding: 100px 60px;
  background: #fff;
  position: relative;
}

.steps-row {
  display: flex;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, rgba(0, 0, 0, 0.05) 100%);
  z-index: -1;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.1);
  transition: all 0.3s ease;
}

.step-item:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(249, 115, 22, 0.2);
}

.step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--label);
  letter-spacing: 0.02em;
}

.step-desc {
  font-size: 13.5px;
  color: var(--gray);
  max-width: 180px;
  line-height: 1.6;
}

/* ── CTA BANNER ── */
#cta-banner {
  background: var(--brand);
  padding: 50px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text .cta-h {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.cta-text .cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
}

.btn-dark {
  background: #25d366;
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .2s;
  white-space: nowrap;
}

.btn-dark:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  padding: 16px 48px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .2s;
  box-shadow: 0 6px 20px rgba(249, 115, 22, .35);
}

.btn-brand:hover {
  background: var(--brand-dark);
}

/* ── QUOTE FORM ── */
#quote-form {
  padding: 80px 60px;
  background: var(--bg);
}

.quote-inner {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  padding: 44px;
  max-width: 900px;
  margin: 0 auto;
}

.tabs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--line);
  margin-bottom: 30px;
}

.tab-item {
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all .2s;
}

.tab-item.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--label);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--label);
  background: #fff;
  outline: none;
  transition: border .2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand);
}

.form-submit {
  margin-top: 24px;
  text-align: center;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 80px 60px;
  background: var(--brand2);
}

#testimonials .section-h2 {
  color: #fff;
}

#testimonials .section-p {
  color: rgba(255, 255, 255, .55);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.testi-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 26px;
  transition: transform .3s;
}

.testi-card:hover {
  transform: translateY(-4px);
}

.testi-card.featured {
  border-color: rgba(249, 115, 22, .4);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.stars i {
  color: var(--brand);
  font-size: 13px;
}

.testi-quote {
  font-size: 38px;
  color: var(--brand);
  opacity: .5;
  line-height: 1;
  margin-bottom: 8px;
}

.testi-text {
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 14px;
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.testi-loc {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
}

/* ── CLIENTS BAND ── */
#clients {
  background: #fff;
  border-top: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
  padding: 24px 60px;
}

.clients-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray);
  text-align: center;
  margin-bottom: 20px;
}

.clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.client-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
}

.client-badge i {
  color: var(--brand);
}

/* ── SERVICE DETAIL LAYOUT ── */
.inner-content {
  padding: 70px 60px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.main-col {
  flex: 1;
  min-width: 0;
}

.sidebar {
  flex: 0 0 300px;
}

.main-col h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--brand2);
  margin: 30px 0 12px;
  letter-spacing: -.02em;
}

.main-col h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--brand2);
  margin: 24px 0 10px;
}

.main-col p {
  color: var(--gray);
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 14px;
}

.main-col ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.main-col ul li {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

.sidebar-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}

.sidebar-card.highlight {
  background: var(--brand2);
  border-color: var(--brand2);
}

.sidebar-card.highlight * {
  color: #fff !important;
}

.sidebar-card h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  color: var(--brand);
}

.sidebar-card .tel-big {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.sidebar-card .btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 10px;
  transition: all .2s;
}

.sidebar-card .btn-call {
  background: var(--brand);
  color: #fff;
}

.sidebar-card .btn-call:hover {
  background: var(--brand-dark);
}

.sidebar-card .btn-wa {
  background: #25d366;
  color: #fff;
}

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

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

.precio-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.precio-row:last-child {
  border: none;
}

.precio-row .concepto {
  color: var(--gray);
}

.precio-row .precio {
  font-weight: 900;
  color: var(--brand);
  font-size: 15px;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--label);
  padding: 8px 10px;
  border-radius: 8px;
  transition: all .2s;
}

.sidebar-links a:hover {
  background: #fff7ed;
  color: var(--brand);
}

.sidebar-links a i {
  color: var(--brand);
  width: 16px;
}

/* ── BACKGROUND UTILS ── */
.bg-white {
  background: #ffffff !important;
}

.bg-light {
  background: var(--bg) !important;
}

.bg-dark {
  background: var(--brand2) !important;
  color: #ffffff !important;
}

.bg-dark .section-h2 {
  color: #ffffff !important;
}

.bg-dark .section-p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ── TESTIMONIALS LIGHT VERSION ── */
#testimonials.light {
  background: #ffffff;
}

#testimonials.light .section-h2 {
  color: var(--brand2) !important;
}

#testimonials.light .section-tag.dark {
  background: var(--brand2);
  color: var(--accent);
}

#testimonials.light .section-p {
  color: var(--gray);
}

#testimonials.light .testi-card {
  background: #ffffff;
  border: 1.5px solid var(--line);
}

#testimonials.light .testi-text {
  color: var(--gray);
}

#testimonials.light .testi-name {
  color: var(--brand2);
}

#testimonials.light .testi-loc {
  color: var(--gray);
}

#testimonials.light .testi-author {
  border-top: 1px solid var(--line);
}

#testimonials.light .testi-av {
  background: var(--bg);
  color: var(--gray);
}

/* ── LOCALIDAD CONTENT ── */
.loc-intro {
  background: #fff;
  padding: 60px;
  border-bottom: 1px solid var(--line);
}

.loc-intro-inner {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.loc-intro-text {
  flex: 1;
}

.loc-stats-mini {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.loc-stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
}

.loc-stat .num {
  font-size: 26px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}

.loc-stat .lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  margin-top: 3px;
  text-transform: uppercase;
}

/* ── FAQ ── */
.faq-section {
  background: var(--bg);
  padding: 70px 60px;
}

.faq-section .section-head {
  margin-bottom: 36px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: background .2s;
}

.faq-q:hover {
  background: #fafafa;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon i {
  color: var(--brand);
  font-size: 12px;
}

.faq-q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--label);
}


/* ── CONTACT PAGE ── */
.contact-section {
  padding: 70px 60px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-info-col {
  flex: 0 0 36%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-col {
  flex: 1;
  background: var(--bg);
  border-radius: 14px;
  border: 1.5px solid var(--line);
  padding: 36px;
}

.info-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  color: var(--brand);
  font-size: 18px;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray);
  margin-bottom: 5px;
}

.info-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--label);
}

.info-val a {
  color: var(--label);
  transition: color .2s;
}

.info-val a:hover {
  color: var(--brand);
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.cf-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--label);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--label);
  background: #fff;
  outline: none;
  transition: border .2s;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--brand);
}

.cf-span {
  grid-column: 1/-1;
}

.map-embed {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  margin-top: 20px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 13px;
}

/* ── LEGAL PAGES ── */
.legal-section {
  padding: 70px 60px;
  max-width: 860px;
  margin: 0 auto;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand2);
  margin: 36px 0 12px;
}

.legal-section h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand2);
  margin: 24px 0 8px;
}

.legal-section p {
  color: var(--gray);
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 12px;
}

.legal-section ul {
  padding-left: 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-section ul li {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.65;
}

.legal-meta {
  background: var(--bg);
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 13px;
  color: var(--gray);
}

/* ── FOOTER ── */
#footer {
  background: #0d1624;
  padding: 60px 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.ft-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ft-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  margin-bottom: 18px;
}

.ft-logo-wrap {
  display: flex !important;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.ft-logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ft-logo-icon {
  background: var(--brand);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-logo-icon i {
  color: #fff;
  font-size: 16px;
}

.ft-logo-name {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}

.ft-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ft-rrss {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.ft-rrss a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 15px;
  transition: all .2s;
}

.ft-rrss a:hover {
  background: var(--brand);
  color: #fff;
}

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

.ft-col ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
}

.ft-col ul a:hover {
  color: #fff;
}

.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 12px;
}

.ft-contact-item i {
  color: inherit;
  width: 18px;
  margin-top: 2px;
}

.ft-contact-item span,
.ft-contact-item a {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

.ft-contact-item a:hover {
  color: #fff;
}

.ft-tel {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 14px;
}

.ft-tel:hover {
  color: var(--brand);
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bar .copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .25);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-bar .links {
  display: flex;
  gap: 20px;
}

.footer-bar .links a {
  font-size: 11px;
  color: rgba(255, 255, 255, .25);
  transition: color .2s;
}

.footer-bar .links a:hover {
  color: #fff;
}

#float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media(max-width: 900px) {
  #float-cta {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }

  #float-cta a {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

#float-cta a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
  transition: transform .2s;
}

#float-cta a:hover {
  transform: scale(1.12);
}

.wa-btn {
  background: #25d366;
  color: #fff;
}

.tel-btn {
  background: #25d366;
  color: #fff;
}

/* ── MISC ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tag-pill {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  margin: 3px;
}

.tag-pill:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ── 21 FAQ ACCORDION ── */
.faq-section {
  padding: 80px 0;
  background: var(--brand2) !important;
  width: 100%;
}

.faq-section .section-h2 {
  color: #fff !important;
}

.faq-section .section-p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--brand);
}

.faq-item.active {
  border-color: var(--brand);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08);
}

.faq-q {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-q h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand2);
  margin: 0;
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--brand);
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 52px 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fafafa;
  opacity: 0;
  visibility: hidden;
}

.faq-item.active .faq-a {
  padding: 0 52px 24px 28px;
  max-height: 800px;
  opacity: 1;
  visibility: visible;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
  padding-top: 10px;
}

/* ── TRUST BAND ── */
#clients {
  padding: 60px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.clients-label {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.clients-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.client-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand2);
  transition: all 0.3s ease;
}

.client-badge i {
  font-size: 18px;
  color: var(--brand);
}

.client-badge:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ── RESPONSIVE ── */
@media(max-width: 900px) {
  #topbar .left span:not(:first-child) {
    display: none;
  }
}

@media (max-width: 991px) {

  /* Layout Base */
  section,
  #services,
  #about,
  #process,
  #quote-form,
  #testimonials,
  .inner-content,
  .contact-section,
  .loc-intro {
    padding: 60px 24px !important;
  }

  /* TOPBAR & NAVBAR */
  #topbar {
    display: none !important;
  }

  #navbar {
    padding: 0 24px !important;
  }

  .nav-links {
    display: none !important;
  }

  #mobile-btn {
    display: block !important;
  }

  /* Hero Global Fix (Visible Form + Stacking) */
  section#hero {
    flex-direction: column !important;
    text-align: center !important;
    padding: 80px 24px 60px !important;
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
  }

  section#hero .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 40px !important;
    padding: 0 !important;
  }

  section#hero .hero-right-panel {
    display: block !important;
    width: 100% !important;
    margin: 30px 0 0 0 !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    padding: 30px 24px !important;
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
  }

  /* Stats Section Stacking (1 column) */
  #stats {
    flex-direction: column !important;
    align-items: center !important;
    gap: 40px !important;
    padding: 60px 24px !important;
  }

  .stat-item {
    width: 100% !important;
    flex: none !important;
    text-align: center !important;
  }

  .stat-sep {
    display: none !important;
  }

  /* Grids and Cards */
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .testi-grid {
    grid-template-columns: 1fr !important;
    display: grid !important;
    gap: 20px !important;
  }

  /* Buttons and Badges Stacking */
  .hero-btns,
  .hero-badges {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
    justify-content: center !important;
  }

  .steps-row {
    flex-direction: column;
    gap: 30px;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .hero-btns>*,
  .hero-price {
    width: 100% !important;
    margin: 0 !important;
  }

  .hero-badges .hero-badge {
    justify-content: center !important;
  }

  .svc-card,
  .sidebar-card,
  .testi-card {
    padding: 30px 20px !important;
  }

  /* CTA Banner Mobile */
  #cta-banner {
    flex-direction: column !important;
    text-align: center !important;
    padding: 60px 24px !important;
    gap: 30px !important;
  }

  /* General elements */
  .inner-content,
  .contact-section,
  .loc-intro-inner,
  #about {
    flex-direction: column !important;
    gap: 40px !important;
  }

  .sidebar,
  .main-col,
  .contact-info-col,
  .contact-form-col,
  .loc-stats-mini {
    width: 100% !important;
    flex: none !important;
  }

  .about-img {
    flex: none !important;
    width: 100% !important;
    margin-bottom: 30px;
  }

  /* Page Headers */
  .page-header {
    padding: 60px 24px !important;
    min-height: 280px !important;
    text-align: center;
  }

  .page-header h1 {
    font-size: 2rem !important;
    margin: 0 auto 16px;
  }

  .breadcrumb {
    justify-content: center;
  }
}

@media (max-width: 768px) {

  /* Typography Scaling */
  .section-h2,
  #hero h1 {
    font-size: 2.6rem !important;
    line-height: 1.15 !important;
  }

  #hero p {
    font-size: 1.15rem !important;
    margin: 0 auto 24px !important;
  }

  .section-p {
    font-size: 1rem !important;
  }

  .form-grid,
  .cf-grid {
    grid-template-columns: 1fr !important;
  }

  /* Ajustes específicos de FAQ */
  .faq-section {
    padding: 60px 0 !important;
  }

  .faq-q {
    padding: 16px 20px !important;
  }

  .faq-q h3 {
    font-size: 14px !important;
  }

  .faq-a {
    padding: 0 40px 0 20px !important;
  }

  .faq-item.active .faq-a {
    padding: 0 40px 20px 20px !important;
  }
}
/* NAV DROPDOWN */
.nav-dropdown-wrapper { position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
    min-width: 200px;
    z-index: 999;
}
.nav-dropdown-wrapper:hover .nav-dropdown-menu { display: flex; flex-direction: column; }
.nav-dropdown-menu a {
    color: var(--primary-color, #1f2937);
    padding: 8px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s;
    display: block;
}
.nav-dropdown-menu a:hover {
    background: #f3f4f6;
    color: var(--accent-color, #0ea5e9);
}
@media (max-width: 900px) {
    .nav-dropdown-menu {
        position: static;
        flex-direction: column;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 15px;
    }
}

/* Fixes for High Contrast typography on Navy background */
[style*="background: #0d1624"],
[style*="background-color: #0d1624"],
[style*="background: var(--brand2)"],
[style*="background-color: var(--brand2)"],
.bg-navy, 
.dark-section,
.dark-section .faq-item {
    --brand: var(--accent);
}

[style*="background: #0d1624"] .section-tag,
[style*="background: var(--brand2)"] .section-tag,
[style*="background-color: #0d1624"] .section-tag,
[style*="background-color: var(--brand2)"] .section-tag {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--accent) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

[style*="background: #0d1624"] .section-h2 span,
[style*="background: var(--brand2)"] .section-h2 span,
[style*="background-color: #0d1624"] .section-h2 span,
[style*="background-color: var(--brand2)"] .section-h2 span {
  color: var(--accent) !important;
}
