/* --------------------------------------------------------------------------
   6. SECCIÓN HERO (CON GLOWING BLOBS DE FONDO)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: 80px;
  padding-bottom: 120px;
  background: var(--body-bg-emerald);
  overflow: hidden;
}

/* Degradados difuminados gigantes detrás del contenido */
.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  z-index: -2;
  filter: blur(50px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  z-index: -2;
  filter: blur(50px);
  pointer-events: none;
}

/* Cuadrícula Catastral */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, rgba(16, 185, 129, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16, 185, 129, 0.02) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
  z-index: -1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

/* Punto de estado */
.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-emerald);
  border-radius: var(--radius-full);
  display: inline-block;
  animation: pulseDot 2s infinite;
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--dark-slate);
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--primary-emerald-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.65;
  margin-bottom: 40px;
  color: var(--secondary-slate-dark);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-assurances {
  display: flex;
  gap: 28px;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.hero-assurances li span {
  color: var(--primary);
  font-weight: 900;
}
/* --------------------------------------------------------------------------
   7.5 BANNER INTRODUCTORIO (CALLOUT)
   -------------------------------------------------------------------------- */
.intro-banner-section {
  padding: 56px 0 24px;
  background-color: var(--white);
}

.intro-banner-card {
  background: #ffffff;
  border-radius: 36px;
  padding: 48px 56px;
  box-shadow: 
    0 30px 60px -15px rgba(15, 23, 42, 0.08), 
    0 12px 24px -10px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.intro-banner-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.intro-banner-card blockquote {
  border: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.intro-banner-card .quote-text {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  font-style: italic;
}

.intro-banner-card .quote-author {
  font-size: 0.82rem;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-style: normal;
}

/* --------------------------------------------------------------------------
   8. FRANJA DE LOGOTIPOS Y CAPACIDADES (TRUST STRIP)
   -------------------------------------------------------------------------- */
.trust-strip {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.03);
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

.trust-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.trust-content p {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-slate);
}

.trust-content ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 56px;
  list-style: none;
}

.trust-content li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.trust-content img {
  height: 120px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all var(--transition-normal);
}

.trust-content span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-slate-dark);
  transition: color var(--transition-normal);
}

.trust-content li:hover img {
  filter: grayscale(0) opacity(1);
  transform: translateY(-4px);
}

.trust-content li:hover span {
  color: var(--primary);
}
/* --------------------------------------------------------------------------
   10. SECCIÓN DE PROBLEMAS / BENEFICIOS (PROBLEM-SECTION)
   -------------------------------------------------------------------------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.problem-card {
  background-color: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.04);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.18);
  box-shadow: var(--shadow-lg);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card .card-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 24px;
}

.problem-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.problem-label {
  display: inline-block;
  margin-right: 6px;
  color: var(--text-muted-slate);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.problem-card strong {
  margin-top: auto;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.problem-card small {
  color: var(--text-muted-slate);
  font-size: 0.8rem;
  line-height: 1.45;
}

.problem-card strong::before {
  content: '✦';
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   12. SECCIÓN DE FLUJO DE TRABAJO (WORKFLOW-SECTION)
   -------------------------------------------------------------------------- */
.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  list-style: none;
  position: relative;
  margin-top: 48px;
}

.workflow::before {
  content: '';
  position: absolute;
  top: 92px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-color: rgba(16, 185, 129, 0.15);
  z-index: 1;
}

.workflow li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

/* Contenedor Visual de Cada Paso */
.step-visual {
  width: 68px;
  height: 68px;
  background-color: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.workflow li:hover .step-visual {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.08);
}

/* Dibujos CSS para los pasos */
.step-map i {
  width: 24px;
  height: 24px;
  background:
    linear-gradient(to right, var(--primary) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, var(--primary) 1.5px, transparent 1.5px);
  background-size: 8px 8px;
}

.step-check i {
  color: var(--primary-emerald);
  font-weight: 900;
  font-size: 1.6rem;
}

.step-record i {
  width: 22px;
  height: 22px;
  border: 2px solid var(--primary);
  border-radius: 3px;
  position: relative;
}

.step-record i::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 3px;
  width: 12px;
  height: 2px;
  background-color: var(--primary);
}

.step-record i::after {
  content: '';
  position: absolute;
  top: 9px;
  left: 3px;
  width: 9px;
  height: 2px;
  background-color: var(--primary);
}

.step-document i {
  width: 18px;
  height: 24px;
  border: 2px solid var(--primary);
  border-radius: 2px;
  position: relative;
}

.step-document i::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
}

.workflow li h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.workflow li p {
  font-size: 0.88rem;
  max-width: 210px;
}

/* --------------------------------------------------------------------------
   17. SECCIÓN DE PREGUNTAS FRECUENTES (FAQ-SECTION)
   -------------------------------------------------------------------------- */
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

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

.faq-list details {
  background-color: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.faq-list details[open] {
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-list summary {
  padding: 22px 26px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

/* Remover flecha por defecto */
.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-list details p {
  padding: 0 26px 22px 26px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid transparent;
}

.faq-list details[open] p {
  border-top-color: rgba(0, 0, 0, 0.02);
}

/* --------------------------------------------------------------------------
   18. SECCIÓN DE CONTACTO Y FORMULARIO (GLASS CARD OSCURA)
   -------------------------------------------------------------------------- */
.contact-section {
  position: relative;
  background-color: var(--dark);
  color: white;
  padding-top: 120px;
  padding-bottom: 72px;
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.05) 0%, transparent 60%);
  z-index: 1;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-copy {
  display: flex;
  flex-direction: column;
}

.contact-copy h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.contact-copy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-copy li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.contact-copy li span {
  color: var(--accent);
  font-weight: 900;
}

/* Formulario */
.contact-form {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-heading {
  margin-bottom: 32px;
}

.form-heading span {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-heading h3 {
  font-size: 1.6rem;
  margin-top: 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: span 2;
}

.contact-form label:not(.privacy-check) {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  padding: 14px 18px;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  transition: all var(--transition-fast);
}

.contact-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

/* Checkbox privacidad */
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  cursor: pointer;
}

.privacy-check input {
  margin-top: 4px;
  accent-color: var(--primary);
}

.form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  text-align: center;
  font-weight: 700;
}

.form-status.success {
  color: #10b981;
}

.form-status.error {
  color: #ef4444;
}

/* --------------------------------------------------------------------------
   24. SECCIÓN DESTINATARIOS (¿PARA QUIÉNES ESTÁ DISEÑADO?)
   -------------------------------------------------------------------------- */
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.target-card {
  background-color: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.04);
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(180px, 42%) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 24px;
  align-items: start;
  min-height: 236px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  overflow: hidden;
}


.target-card-image {
  width: 100%;
  height: 200px;
  grid-row: 1 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  border: 1px solid rgba(16, 185, 129, 0.12);
}

.target-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-normal);
}


.target-card h3 {
  font-size: 1.25rem;
  margin: 14px 0 12px;
  color: var(--dark-slate);
}

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