/**
 * Solstice Iberia — Main Stylesheet
 * Aislamiento térmico España · Programa CAE 2026
 * Fonts: Outfit (headings) + DM Sans (body)
 * v2.0.0
 */

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
:root {
  /* Colores principales */
  --sol-blue:        #0F2A47;
  --sol-blue-light:  #1B3E5F;
  --sol-blue-pale:   #E8F0FE;
  --sol-green:       #2E7D32;
  --sol-green-light: #4CAF50;
  --sol-green-pale:  #E8F5E9;
  --sol-orange:      #FF7A00;
  --sol-orange-light:#FFF3E0;
  --sol-red:         #D32F2F;
  --sol-red-pale:    #FFEBEE;
  --sol-white:       #FFFFFF;
  --sol-gray-50:     #FAFBFC;
  --sol-gray-100:    #F1F3F5;
  --sol-gray-200:    #E4E7EB;
  --sol-gray-300:    #CED4DA;
  --sol-gray-500:    #6C757D;
  --sol-gray-700:    #495057;
  --sol-gray-900:    #212529;
  --sol-shadow-sm:   0 1px 3px rgba(15,42,71,.08);
  --sol-shadow:      0 4px 12px rgba(15,42,71,.1);
  --sol-shadow-lg:   0 8px 30px rgba(15,42,71,.12);
  --sol-shadow-xl:   0 16px 48px rgba(15,42,71,.15);
  --sol-radius:      12px;
  --sol-radius-lg:   20px;
  --sol-transition:  .25s cubic-bezier(.4,0,.2,1);
  --sol-font-body:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --sol-font-head:   'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --sol-container:   1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sol-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--sol-gray-900);
  background: var(--sol-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sol-blue); text-decoration: none; transition: color var(--sol-transition); }
a:hover { color: var(--sol-green); }
h1,h2,h3,h4,h5,h6 { font-family: var(--sol-font-head); line-height: 1.2; color: var(--sol-blue); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
ul, ol { padding-left: 1.2em; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════ */
.sol-container {
  width: 100%;
  max-width: var(--sol-container);
  margin: 0 auto;
  padding: 0 24px;
}
.sol-content-narrow { max-width: 820px; }


/* ═══════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════ */
.sol-topbar {
  background: var(--sol-blue);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  padding: 8px 0;
}
.sol-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sol-topbar a { color: rgba(255,255,255,.9); font-weight: 500; }
.sol-topbar a:hover { color: #fff; }
.sol-topbar-right { display: flex; gap: 20px; }

@media (max-width: 768px) {
  .sol-topbar-inner { justify-content: center; text-align: center; }
  .sol-topbar-right { display: none; }
}


/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */
.sol-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sol-gray-200);
  padding: 0;
  transition: box-shadow var(--sol-transition);
}
.sol-header.scrolled { box-shadow: var(--sol-shadow); }
.sol-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.sol-logo { display: flex; align-items: center; flex-shrink: 0; }
.sol-logo img { max-height: 40px; width: auto; }
.sol-logo-text {
  font-family: var(--sol-font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sol-blue);
  letter-spacing: -.02em;
}

/* Nav links */
.sol-nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.sol-nav-list li a {
  display: block;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--sol-gray-700);
  border-radius: 8px;
  transition: all var(--sol-transition);
}
.sol-nav-list li a:hover,
.sol-nav-list li.current-menu-item > a,
.sol-nav-list li.current_page_item > a {
  color: var(--sol-blue);
  background: var(--sol-blue-pale);
}

.sol-header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Burger */
.sol-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.sol-burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--sol-blue);
  border-radius: 2px;
  transition: all .3s;
}
.sol-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.sol-burger.open span:nth-child(2) { opacity: 0; }
.sol-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 960px) {
  .sol-nav { display: none; }
  .sol-burger { display: flex; }
  .sol-header-actions .sol-btn { display: none; }
}


/* ═══════════════════════════════════════════
   MOBILE NAV OVERLAY
   ═══════════════════════════════════════════ */
.sol-mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-mobile-nav.open { opacity: 1; pointer-events: auto; }
.sol-mobile-nav-inner { text-align: center; width: 85%; max-width: 360px; }
.sol-mobile-list {
  list-style: none;
  padding: 0;
}
.sol-mobile-list li a {
  display: block;
  padding: 14px 0;
  font-family: var(--sol-font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sol-blue);
  border-bottom: 1px solid var(--sol-gray-200);
}
.sol-mobile-contact {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.sol-mobile-contact .sol-btn { flex: 1; }


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.sol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--sol-font-head);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--sol-transition);
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}
.sol-btn-sm { padding: 8px 20px; font-size: 13.5px; }
.sol-btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 12px; }

.sol-btn-primary {
  background: var(--sol-orange);
  color: #fff;
  border-color: var(--sol-orange);
}
.sol-btn-primary:hover {
  background: #e66e00;
  border-color: #e66e00;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,122,0,.35);
}

.sol-btn-outline {
  background: transparent;
  color: var(--sol-blue);
  border-color: var(--sol-blue);
}
.sol-btn-outline:hover {
  background: var(--sol-blue);
  color: #fff;
}

.sol-btn-back {
  background: transparent;
  color: var(--sol-gray-500);
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
}
.sol-btn-back:hover { color: var(--sol-blue); }

.sol-btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.sol-btn-whatsapp:hover { background: #1fb855; border-color: #1fb855; color: #fff; }

/* Pulse animation for main CTA */
.sol-pulse { animation: solPulse 2.5s ease-in-out infinite; }
@keyframes solPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,122,0,.4); }
  50%      { box-shadow: 0 0 0 14px rgba(255,122,0,0); }
}


/* ═══════════════════════════════════════════
   BADGES
   ═══════════════════════════════════════════ */
.sol-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--sol-font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 16px;
}
.sol-badge-green  { background: var(--sol-green-pale); color: var(--sol-green); }
.sol-badge-blue   { background: var(--sol-blue-pale);  color: var(--sol-blue); }
.sol-badge-orange { background: var(--sol-orange-light); color: var(--sol-orange); }


/* ═══════════════════════════════════════════
   HERO SECTION (front-page)
   ═══════════════════════════════════════════ */
.sol-hero {
  background: linear-gradient(135deg, var(--sol-blue) 0%, var(--sol-blue-light) 100%);
  color: #fff;
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.sol-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,122,0,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.sol-hero-content { max-width: 750px; position: relative; z-index: 1; }
.sol-hero-title { color: #fff; margin-bottom: 20px; }
.sol-hero-title .sol-hl { color: var(--sol-orange); }
.sol-hero-sub { font-size: clamp(1rem, 2.2vw, 1.2rem); opacity: .92; margin-bottom: 32px; line-height: 1.7; }
.sol-hero-sub strong { color: #fff; }
.sol-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.sol-hero-micro {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13.5px; opacity: .8;
}


/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.sol-stats-bar {
  background: var(--sol-white);
  border-bottom: 1px solid var(--sol-gray-200);
  padding: 28px 0;
}
.sol-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.sol-stat-num {
  font-family: var(--sol-font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--sol-blue);
}
.sol-stat-label { font-size: 13px; color: var(--sol-gray-500); margin-top: 2px; }

@media (max-width: 600px) {
  .sol-stats-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════
   SOCIAL PROOF BAR
   ═══════════════════════════════════════════ */
.sol-proof {
  background: var(--sol-gray-50);
  padding: 14px 0;
  border-bottom: 1px solid var(--sol-gray-200);
  font-size: 13px;
  color: var(--sol-gray-500);
}
.sol-proof span { margin: 0 6px; }

@media (max-width: 768px) {
  .sol-proof .sol-container { font-size: 12px; }
  .sol-proof span:nth-child(2), .sol-proof span:nth-child(4) { display: none; }
}


/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.sol-section {
  padding: clamp(48px, 8vw, 80px) 0;
}
.sol-section-alt { background: var(--sol-gray-50); }
.sol-section-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--sol-gray-500);
  max-width: 640px;
  margin-bottom: 40px;
}
.sol-section .sol-badge + h2 { margin-top: 8px; }
.sol-section h2 { margin-bottom: 12px; }


/* ═══════════════════════════════════════════
   CARDS (3 columns)
   ═══════════════════════════════════════════ */
.sol-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.sol-card {
  background: var(--sol-white);
  border-radius: var(--sol-radius);
  padding: 32px 28px;
  box-shadow: var(--sol-shadow-sm);
  transition: all var(--sol-transition);
}
.sol-card:hover { transform: translateY(-3px); box-shadow: var(--sol-shadow); }
.sol-card-bordered { border: 1px solid var(--sol-gray-200); }
.sol-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.sol-card p { color: var(--sol-gray-700); font-size: 14.5px; }

.sol-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.sol-icon-red    { background: var(--sol-red-pale); }
.sol-icon-blue   { background: var(--sol-blue-pale); }
.sol-icon-orange { background: var(--sol-orange-light); }

.sol-card-amount {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sol-gray-200);
  font-family: var(--sol-font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sol-green);
}

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


/* ═══════════════════════════════════════════
   HIGHLIGHT BOX
   ═══════════════════════════════════════════ */
.sol-highlight {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--sol-orange-light);
  border-left: 4px solid var(--sol-orange);
  border-radius: 0 var(--sol-radius) var(--sol-radius) 0;
  padding: 24px 32px;
  margin-top: 32px;
}
.sol-highlight-num {
  font-family: var(--sol-font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--sol-orange);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .sol-highlight { flex-direction: column; text-align: center; gap: 12px; }
}


/* ═══════════════════════════════════════════
   STEPS (Cómo funciona — homepage)
   ═══════════════════════════════════════════ */
.sol-steps { margin-top: 36px; }
.sol-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
}
.sol-step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sol-blue);
  color: #fff;
  font-family: var(--sol-font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.sol-step h3 { margin-bottom: 6px; }
.sol-step p { color: var(--sol-gray-700); font-size: 14.5px; }
.sol-step-line {
  width: 2px; height: 24px;
  background: var(--sol-gray-200);
  margin-left: 23px;
}


/* ═══════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════ */
.sol-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.sol-benefit {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--sol-white);
  border-radius: var(--sol-radius);
  box-shadow: var(--sol-shadow-sm);
  transition: all var(--sol-transition);
}
.sol-benefit:hover { box-shadow: var(--sol-shadow); }
.sol-bcheck {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--sol-green-pale);
  color: var(--sol-green);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.sol-benefit h3 { font-size: 1rem; margin-bottom: 6px; }
.sol-benefit p { font-size: 14px; color: var(--sol-gray-500); }

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


/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.sol-tcard {
  background: var(--sol-white);
  border-radius: var(--sol-radius);
  padding: 28px;
  box-shadow: var(--sol-shadow-sm);
  border: 1px solid var(--sol-gray-200);
  transition: all var(--sol-transition);
}
.sol-tcard:hover { box-shadow: var(--sol-shadow); }
.sol-tcard-stars { color: #FACC15; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.sol-tcard p { font-size: 14.5px; color: var(--sol-gray-700); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.sol-tcard-author { display: flex; align-items: center; gap: 12px; }
.sol-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sol-blue-pale);
  color: var(--sol-blue);
  font-family: var(--sol-font-head);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.sol-tcard-author strong { font-size: 14px; }
.sol-tcard-author small { color: var(--sol-gray-500); font-size: 12.5px; }


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.sol-faq-list { max-width: 800px; margin: 32px auto 0; }
.sol-faq-item {
  border: 1px solid var(--sol-gray-200);
  border-radius: var(--sol-radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--sol-white);
  transition: box-shadow var(--sol-transition);
}
.sol-faq-item:hover { box-shadow: var(--sol-shadow-sm); }
.sol-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.sol-faq-q h3 { font-size: 1rem; font-weight: 600; margin: 0; flex: 1; }
.sol-faq-arrow {
  font-size: 18px;
  color: var(--sol-gray-500);
  transition: transform .3s;
  flex-shrink: 0;
}
.sol-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.sol-faq-a-inner {
  padding: 0 24px 20px;
  color: var(--sol-gray-700);
  font-size: 14.5px;
  line-height: 1.8;
}
.sol-faq-item.open .sol-faq-arrow { transform: rotate(180deg); }
.sol-faq-item.open .sol-faq-a { max-height: 400px; }


/* ═══════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════ */
.sol-blog-card {
  display: block;
  background: var(--sol-white);
  border-radius: var(--sol-radius);
  overflow: hidden;
  box-shadow: var(--sol-shadow-sm);
  border: 1px solid var(--sol-gray-200);
  text-decoration: none;
  color: inherit;
  transition: all var(--sol-transition);
}
.sol-blog-card:hover { transform: translateY(-4px); box-shadow: var(--sol-shadow); color: inherit; }
.sol-blog-card-img { height: 200px; overflow: hidden; }
.sol-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sol-blog-card-body { padding: 20px 24px; }
.sol-blog-card-body time { font-size: 12px; color: var(--sol-gray-500); text-transform: uppercase; letter-spacing: .05em; }
.sol-blog-card-body h3 { font-size: 1.05rem; margin: 8px 0 10px; }
.sol-blog-card-body p { font-size: 14px; color: var(--sol-gray-500); }
.sol-link { font-size: 14px; font-weight: 600; color: var(--sol-orange); display: inline-block; margin-top: 8px; }


/* ═══════════════════════════════════════════
   PAGE HERO (subpages)
   ═══════════════════════════════════════════ */
.sol-page-hero {
  background: var(--sol-gray-50);
  border-bottom: 1px solid var(--sol-gray-200);
  padding: clamp(40px, 6vw, 64px) 0;
}
.sol-page-hero h1 { margin-bottom: 12px; }
.sol-page-hero p { font-size: clamp(1rem, 2vw, 1.1rem); color: var(--sol-gray-500); max-width: 680px; }
.sol-page-hero-dark {
  background: linear-gradient(135deg, var(--sol-blue), var(--sol-blue-light));
  color: #fff;
  border-bottom: none;
}
.sol-page-hero-dark h1 { color: #fff; }
.sol-page-hero-dark p { color: rgba(255,255,255,.8); }


/* ═══════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════ */
.sol-breadcrumb {
  font-size: 13px;
  color: var(--sol-gray-500);
  margin-bottom: 16px;
}
.sol-breadcrumb a { color: var(--sol-gray-500); }
.sol-breadcrumb a:hover { color: var(--sol-blue); }
.sol-breadcrumb-light, .sol-breadcrumb-light a { color: rgba(255,255,255,.6); }
.sol-breadcrumb-light a:hover { color: #fff; }


/* ═══════════════════════════════════════════
   TIMELINE (como-funciona)
   ═══════════════════════════════════════════ */
.sol-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.sol-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--sol-gray-200);
  border-radius: 2px;
}
.sol-tl-item {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 40px;
}
.sol-tl-item:last-child { padding-bottom: 0; }
.sol-tl-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sol-blue);
  color: #fff;
  font-family: var(--sol-font-head);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--sol-white);
}
.sol-tl-content h2 { font-size: 1.3rem; margin-bottom: 10px; }
.sol-tl-content p { color: var(--sol-gray-700); font-size: 15px; margin-bottom: 16px; }

.sol-check-list {
  list-style: none;
  padding: 0;
}
.sol-check-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 14.5px;
  color: var(--sol-gray-700);
}
.sol-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sol-green);
  font-weight: 700;
}


/* ═══════════════════════════════════════════
   AYUDAS DETAIL
   ═══════════════════════════════════════════ */
.sol-ayuda-detail {
  background: var(--sol-white);
  border: 1px solid var(--sol-gray-200);
  border-radius: var(--sol-radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}
.sol-ayuda-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--sol-gray-200);
}
.sol-ayuda-header h2 { margin: 8px 0 0; font-size: 1.3rem; }
.sol-ayuda-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.sol-tag-green  { background: var(--sol-green-pale); color: var(--sol-green); }
.sol-tag-blue   { background: var(--sol-blue-pale); color: var(--sol-blue); }
.sol-tag-orange { background: var(--sol-orange-light); color: var(--sol-orange); }
.sol-ayuda-body { padding: 28px 32px; }
.sol-ayuda-body p { font-size: 15px; color: var(--sol-gray-700); margin-bottom: 20px; }
.sol-ayuda-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sol-ayuda-grid > div {
  padding: 16px;
  background: var(--sol-gray-50);
  border-radius: 10px;
  font-size: 14px;
  color: var(--sol-gray-700);
}
.sol-ayuda-grid strong { color: var(--sol-blue); display: block; margin-bottom: 4px; font-size: 13px; }

@media (max-width: 600px) {
  .sol-ayuda-grid { grid-template-columns: 1fr; }
  .sol-ayuda-header, .sol-ayuda-body { padding: 20px; }
}


/* ═══════════════════════════════════════════
   ELIGIBILITY FORM
   ═══════════════════════════════════════════ */
.sol-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--sol-white);
  border: 1px solid var(--sol-gray-200);
  border-radius: var(--sol-radius-lg);
  box-shadow: var(--sol-shadow-lg);
  padding: 40px 36px;
}
.sol-form-header { text-align: center; margin-bottom: 24px; }
.sol-form-secure {
  display: inline-block;
  font-size: 13px;
  color: var(--sol-gray-500);
  padding: 6px 16px;
  background: var(--sol-gray-50);
  border-radius: 100px;
}

/* Progress */
.sol-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}
.sol-prog-step {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: var(--sol-gray-200);
  transition: background .4s;
}
.sol-prog-step.active { background: var(--sol-orange); }
.sol-prog-label {
  text-align: center;
  font-size: 12px;
  color: var(--sol-gray-500);
  margin-bottom: 28px;
}

/* Steps */
.sol-fstep {
  display: none;
  animation: solFadeIn .35s ease;
}
.sol-fstep.active { display: block; }
@keyframes solFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sol-fq {
  font-family: var(--sol-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sol-blue);
  text-align: center;
  margin-bottom: 24px;
}

/* Options (step 1, 2) */
.sol-opts {
  display: grid;
  gap: 14px;
}
.sol-opts-2 { grid-template-columns: repeat(2, 1fr); }
.sol-opts-3 { grid-template-columns: repeat(3, 1fr); }
.sol-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: var(--sol-gray-50);
  border: 2px solid var(--sol-gray-200);
  border-radius: var(--sol-radius);
  cursor: pointer;
  font-family: var(--sol-font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--sol-blue);
  transition: all var(--sol-transition);
}
.sol-opt:hover { border-color: var(--sol-blue); background: var(--sol-blue-pale); }
.sol-opt.selected { border-color: var(--sol-orange); background: var(--sol-orange-light); }
.sol-opt-icon { font-size: 28px; }

@media (max-width: 480px) {
  .sol-opts-3 { grid-template-columns: 1fr; }
  .sol-form-wrap { padding: 28px 20px; }
}

/* Inputs */
.sol-input-group { margin-bottom: 16px; }
.sol-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--sol-font-body);
  font-size: 15px;
  border: 2px solid var(--sol-gray-200);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--sol-transition);
  background: var(--sol-gray-50);
  color: var(--sol-gray-900);
}
.sol-input:focus { border-color: var(--sol-blue); background: var(--sol-white); }
.sol-input.error { border-color: var(--sol-red); }
.sol-textarea { resize: vertical; min-height: 100px; }
.sol-input-hint { font-size: 12px; color: var(--sol-gray-500); margin-top: 6px; padding-left: 4px; }

/* Nav buttons */
.sol-fnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 12px;
}

/* Legal text */
.sol-legal-text {
  font-size: 12px;
  color: var(--sol-gray-500);
  text-align: center;
  margin-top: 16px;
}
.sol-legal-text a { color: var(--sol-gray-500); text-decoration: underline; }


/* ═══════════════════════════════════════════
   SUCCESS STATE
   ═══════════════════════════════════════════ */
.sol-success { text-align: center; }
.sol-success-icon { font-size: 48px; margin-bottom: 16px; }
.sol-success h2 { margin-bottom: 12px; color: var(--sol-green); }
.sol-success p { font-size: 15px; color: var(--sol-gray-700); }
.sol-success-box {
  background: var(--sol-green-pale);
  border: 1px solid var(--sol-green);
  border-radius: 10px;
  padding: 16px 24px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--sol-green);
}
.sol-success-next { text-align: left; margin-top: 28px; }
.sol-success-next h3 { margin-bottom: 12px; }
.sol-success-next ol { padding-left: 20px; }
.sol-success-next li { margin-bottom: 8px; color: var(--sol-gray-700); font-size: 14.5px; }


/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.sol-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.sol-contact-info h2, .sol-contact-form-wrap h2 { margin-bottom: 16px; }
.sol-contact-info p { color: var(--sol-gray-700); margin-bottom: 28px; }
.sol-contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.sol-contact-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.sol-contact-item strong { font-size: 14.5px; }
.sol-contact-item a { font-size: 15px; }
.sol-contact-item small { font-size: 12px; color: var(--sol-gray-500); }
.sol-contact-cta {
  margin-top: 32px;
  padding: 24px;
  background: var(--sol-blue-pale);
  border-radius: var(--sol-radius);
}
.sol-contact-form-wrap {
  background: var(--sol-gray-50);
  padding: 32px;
  border-radius: var(--sol-radius-lg);
  border: 1px solid var(--sol-gray-200);
}

@media (max-width: 768px) {
  .sol-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ═══════════════════════════════════════════
   CTA FINAL SECTION
   ═══════════════════════════════════════════ */
.sol-cta-final {
  background: linear-gradient(135deg, var(--sol-blue), var(--sol-blue-light));
  color: #fff;
  padding: clamp(48px, 8vw, 72px) 0;
}
.sol-cta-final h2 { color: #fff; margin-bottom: 12px; }
.sol-cta-final p { color: rgba(255,255,255,.85); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.sol-footer {
  background: var(--sol-gray-900);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}
.sol-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.sol-footer-brand {
  font-family: var(--sol-font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.sol-footer-col p { font-size: 13.5px; line-height: 1.7; }
.sol-footer-col h4 {
  color: #fff;
  font-family: var(--sol-font-head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sol-footer-links {
  list-style: none;
  padding: 0;
}
.sol-footer-links li { margin-bottom: 8px; }
.sol-footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: color var(--sol-transition);
}
.sol-footer-links a:hover { color: #fff; }
.sol-footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.sol-footer-badges span {
  background: rgba(255,255,255,.08);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.sol-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 12.5px;
}
.sol-footer-bottom p { margin-bottom: 4px; }

@media (max-width: 768px) {
  .sol-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .sol-footer-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════ */
.sol-wa-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s;
}
.sol-wa-float:hover { transform: scale(1.08); }

@media (max-width: 768px) {
  .sol-wa-float { bottom: 80px; right: 16px; width: 50px; height: 50px; }
  .sol-wa-float svg { width: 24px; height: 24px; }
}


/* ═══════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════ */
.sol-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--sol-white);
  padding: 10px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.1);
  text-align: center;
  transform: translateY(100%);
  transition: transform .3s;
}
.sol-sticky-cta.visible { transform: translateY(0); }
.sol-sticky-cta .sol-btn { width: 100%; }

@media (min-width: 769px) {
  .sol-sticky-cta { display: none; }
}


/* ═══════════════════════════════════════════
   ARTICLE CONTENT (pages, blog)
   ═══════════════════════════════════════════ */
.sol-article {
  font-size: 16px;
  line-height: 1.8;
  color: var(--sol-gray-700);
}
.sol-article h2 {
  margin: 40px 0 16px;
  padding-top: 20px;
}
.sol-article h3 { margin: 28px 0 12px; }
.sol-article p { margin-bottom: 16px; }
.sol-article ul, .sol-article ol { margin-bottom: 20px; }
.sol-article li { margin-bottom: 6px; }
.sol-article a { color: var(--sol-orange); font-weight: 500; }
.sol-article a:hover { text-decoration: underline; }
.sol-article img { border-radius: var(--sol-radius); margin: 24px 0; }
.sol-article blockquote {
  border-left: 4px solid var(--sol-orange);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--sol-gray-50);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--sol-gray-700);
}


/* ═══════════════════════════════════════════
   BLOG: SINGLE POST
   ═══════════════════════════════════════════ */
.sol-post-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--sol-gray-500);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sol-post-feat {
  border-radius: var(--sol-radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  max-height: 500px;
}
.sol-post-feat img { width: 100%; height: 100%; object-fit: cover; }
.sol-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--sol-gray-200);
}
.sol-post-nav a { font-size: 14px; font-weight: 600; }


/* ═══════════════════════════════════════════
   BLOG: ARCHIVE / LIST
   ═══════════════════════════════════════════ */
.sol-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .sol-blog-grid { grid-template-columns: 1fr; }
}

.sol-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.sol-pagination a, .sol-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--sol-gray-200);
  transition: all var(--sol-transition);
}
.sol-pagination a:hover { background: var(--sol-blue-pale); border-color: var(--sol-blue); }
.sol-pagination .current { background: var(--sol-blue); color: #fff; border-color: var(--sol-blue); }


/* ═══════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════ */
.sol-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
}
.sol-sidebar { position: sticky; top: 88px; align-self: start; }
.sol-widget {
  margin-bottom: 28px;
  padding: 24px;
  background: var(--sol-gray-50);
  border-radius: var(--sol-radius);
  border: 1px solid var(--sol-gray-200);
}
.sol-widget-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sol-orange);
}
.sol-widget ul { list-style: none; padding: 0; }
.sol-widget li { margin-bottom: 8px; }
.sol-widget a { font-size: 14px; color: var(--sol-gray-700); }
.sol-widget a:hover { color: var(--sol-orange); }

.sol-sidebar-cta {
  background: linear-gradient(135deg, var(--sol-blue), var(--sol-blue-light));
  color: #fff;
  border-radius: var(--sol-radius);
  padding: 28px 24px;
  text-align: center;
}
.sol-sidebar-cta h3 { color: #fff; font-size: 1.1rem; margin-bottom: 12px; }
.sol-sidebar-cta p { font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 16px; }

@media (max-width: 960px) {
  .sol-with-sidebar { grid-template-columns: 1fr; }
  .sol-sidebar { position: static; }
}


/* ═══════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════ */
.sol-404 { text-align: center; padding: 80px 0; }
.sol-404-num {
  font-family: var(--sol-font-head);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--sol-gray-200);
  line-height: 1;
}
.sol-404 h1 { font-size: 1.8rem; margin: 16px 0 12px; }
.sol-404 p { color: var(--sol-gray-500); margin-bottom: 28px; }


/* ═══════════════════════════════════════════
   SEARCH
   ═══════════════════════════════════════════ */
.sol-search-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 24px 0;
}
.sol-search-form input { flex: 1; }


/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.sol-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.sol-fade.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════ */
@media print {
  .sol-topbar, .sol-header, .sol-wa-float, .sol-sticky-cta,
  .sol-cta-final, .sol-footer { display: none !important; }
  body { font-size: 12pt; }
}
