/*
Theme Name:   INGEOAM ISSAS Child
Template:     twentytwentyfour
Version:      1.0.0
Author:       INGEOAM SOLUCIONES SAS
Description:  Tema hijo de alta ingeniería para el despliegue del ecosistema ISSAS (n8n, WhatsApp y ChatbotAI).
*/

/* ==========================================================================
   AQUÍ IRA EL CSS DEL ARCHIVO FOOTER_ISSAS.HTML EN EL SIGUIENTE PASO
   ========================================================================== */
   /* ═══════════════════════════════════════════════
   VARIABLES — Manual de Marca INGEOAM SOLUCIONES SAS v1.0
   Paleta primaria: Vinotinto · Dorado · Negro · Blanco · Verde
   ═══════════════════════════════════════════════ */
:root {
  --vinotinto:        #69233F;
  --vinotinto-deep:   #4A0F27;
  --vinotinto-mid:    #8B2D50;
  --dorado:           #F9A340;
  --dorado-claro:     #FBCA7E;
  --dorado-oscuro:    #C47D1E;
  --verde:            #426A5A;
  --verde-claro:      #B4D3C7;
  --negro:            #0D0D0D;
  --blanco:           #FFFFFF;
  --gris-footer:      #111318;   /* fondo principal del footer */
  --gris-mid:         #1C2128;   /* fondo columnas */
  --gris-borde:       rgba(249,163,64,0.18);
  --texto-claro:      rgba(255,255,255,0.82);
  --texto-muted:      rgba(255,255,255,0.52);
 
  /* Degradados del Manual de Marca */
  --grad-vinotinto-negro: linear-gradient(135deg, #AF1351D9 0%, #69233F 40%, #0D0D0D 100%);
  --grad-dorado-blanco:   linear-gradient(135deg, #F9A340 0%, #E7D616 60%, #FFFFFF 100%);
  --grad-verde-vinotinto: linear-gradient(135deg, #426A5A 0%, #B4D3C7 50%, #69233F 100%);
  --grad-titulo:          linear-gradient(90deg, #F9A340 0%, #FBCA7E 60%, #F9A340 100%);
 
  /* Tipografías del Manual de Marca */
  --font-titulo:   'Lato', sans-serif;       /* N1: Lato Bold - títulos */
  --font-subtitulo:'Montserrat', sans-serif; /* N2: Montserrat Extra Bold */
  --font-cuerpo:   'Barlow Condensed', sans-serif; /* N3: Barlow Condensed - textos */
}
 
/* ─── Reset básico ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
 
/* ═══════════════════════════════════════════════
   FOOTER PRINCIPAL
   ═══════════════════════════════════════════════ */
.issas-footer {
  background: var(--gris-footer);
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(105,35,63,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(66,106,90,0.18) 0%, transparent 60%);
  font-family: var(--font-cuerpo);
  color: var(--texto-claro);
  position: relative;
  overflow: hidden;
}
 
/* Línea dorada superior de marca */
.issas-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--grad-dorado-blanco);
  width: 100%;
}
 
/* ─── Grid de 4 columnas ─── */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 48px;
}
 
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); padding: 48px 28px 36px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; padding: 36px 20px 28px; }
}
 
/* ─── Columna base ─── */
.footer-col {
  padding: 0 32px 0 0;
  border-right: 1px solid var(--gris-borde);
  padding-right: 36px;
}
.footer-col:last-child { border-right: none; padding-right: 0; padding-left: 36px; }
.footer-col:first-child { padding-left: 0; }
.footer-col:not(:first-child):not(:last-child) { padding-left: 36px; }
 
@media (max-width: 1100px) {
  .footer-col { border-right: none; border-bottom: 1px solid var(--gris-borde); padding: 0 0 36px 0; margin-bottom: 36px; }
  .footer-col:last-child { border-bottom: none; margin-bottom: 0; padding: 0; }
}
 
/* ─── Título de columna ─── */
.col-titulo {
  font-family: var(--font-titulo);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--grad-titulo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  display: block;
}
 
.col-heading {
  font-family: var(--font-subtitulo);
  font-weight: 800;
  font-size: 17px;
  color: var(--blanco);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
 
/* ─── Línea dorada bajo heading ─── */
.col-heading::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--dorado);
  margin-top: 10px;
  border-radius: 2px;
}
 
/* ─── Items de lista ─── */
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.footer-list li {
  font-family: var(--font-cuerpo);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--texto-claro);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
 
.footer-list a {
  color: var(--texto-claro);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-list a:hover { color: var(--dorado); }
 
/* Ícono SVG inline en links */
.footer-list .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke: var(--dorado);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
 
/* ═══ COL 1: Conversión directa ═══ */
.cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5a 100%);
  color: #fff;
  font-family: var(--font-subtitulo);
  font-weight: 700;
  font-size: 13px;
  padding: 11px 18px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 18px rgba(37,211,102,0.25);
}
.cta-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.cta-whatsapp svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
 
.cta-chatbot {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gris-borde);
  color: var(--dorado);
  font-family: var(--font-subtitulo);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  transition: background 0.18s, border-color 0.18s;
}
.cta-chatbot:hover { background: rgba(249,163,64,0.08); border-color: var(--dorado); }
.cta-chatbot svg { width: 18px; height: 18px; stroke: var(--dorado); fill: none; stroke-width: 1.8; }
 
.contact-dato {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cuerpo);
  font-size: 14px;
  color: var(--texto-claro);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.18s;
}
.contact-dato:hover { color: var(--dorado); }
.contact-dato svg { width: 16px; height: 16px; stroke: var(--dorado); fill: none; stroke-width: 1.8; flex-shrink: 0; }
 
/* ═══ COL 2: PQRSF / Transparencia ═══ */
.pqrsf-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(105,35,63,0.45);
  border: 1px solid rgba(105,35,63,0.7);
  color: var(--dorado-claro);
  font-family: var(--font-subtitulo);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
 
.pqrsf-desc {
  font-family: var(--font-cuerpo);
  font-size: 13px;
  color: var(--texto-muted);
  line-height: 1.6;
  margin-top: 10px;
  font-style: italic;
  border-left: 2px solid var(--vinotinto-mid);
  padding-left: 12px;
}
 
.ley-tag {
  display: inline-block;
  background: rgba(105,35,63,0.3);
  border: 1px solid rgba(175,19,81,0.4);
  color: var(--dorado-claro);
  font-size: 10px;
  font-family: var(--font-subtitulo);
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  margin-left: 6px;
  vertical-align: middle;
}
 
/* ═══ COL 3: Capital Humano ═══ */
.redes-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
 
.red-social {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--gris-borde);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.red-social:hover {
  background: rgba(249,163,64,0.12);
  border-color: var(--dorado);
  transform: translateY(-2px);
}
.red-social svg { width: 17px; height: 17px; stroke: var(--texto-claro); fill: none; stroke-width: 1.7; transition: stroke 0.18s; }
.red-social:hover svg { stroke: var(--dorado); }
 
.propuesta-box {
  background: rgba(66,106,90,0.12);
  border: 1px solid rgba(66,106,90,0.3);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 16px;
}
.propuesta-box p {
  font-family: var(--font-cuerpo);
  font-size: 13px;
  color: var(--verde-claro);
  line-height: 1.55;
  font-style: italic;
}
 
/* ═══ COL 4: Formulario Newsletter / Laboratorio 4R+T ═══ */
.form-label-top {
  font-family: var(--font-cuerpo);
  font-size: 11px;
  color: var(--texto-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  display: block;
}
 
.form-newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.form-row { display: flex; gap: 10px; }
.form-row .form-group { flex: 1; }
 
.form-group { display: flex; flex-direction: column; gap: 4px; }
 
.form-group label {
  font-family: var(--font-cuerpo);
  font-size: 11px;
  color: var(--texto-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
 
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  color: var(--blanco);
  font-family: var(--font-cuerpo);
  font-size: 14px;
  padding: 9px 12px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--dorado);
  background: rgba(249,163,64,0.05);
}
.form-group textarea { resize: none; height: 70px; line-height: 1.5; }
 
.checkbox-legal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.checkbox-legal input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--dorado);
  cursor: pointer;
}
.checkbox-legal span {
  font-family: var(--font-cuerpo);
  font-size: 11.5px;
  color: var(--texto-muted);
  line-height: 1.5;
}
.checkbox-legal a { color: var(--dorado); text-decoration: none; }
.checkbox-legal a:hover { text-decoration: underline; }
 
.btn-submit {
  background: var(--vinotinto);
  background-image: linear-gradient(135deg, var(--vinotinto) 0%, var(--vinotinto-deep) 100%);
  color: var(--blanco);
  font-family: var(--font-subtitulo);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-image 0.2s, transform 0.15s, box-shadow 0.2s;
  width: 100%;
  box-shadow: 0 4px 16px rgba(105,35,63,0.4);
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-oscuro) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(105,35,63,0.5); }
.btn-submit:hover::after { opacity: 1; }
.btn-submit span { position: relative; z-index: 1; }
 
/* ═══ SEPARADOR CON DEGRADADO ═══ */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--vinotinto-mid) 20%, var(--dorado) 50%, var(--vinotinto-mid) 80%, transparent 100%);
  margin: 0 40px;
  opacity: 0.5;
}
 
/* ═══ SUB-FOOTER: Notas Legales ═══ */
.subfooter {
  background: rgba(0,0,0,0.45);
  padding: 20px 40px;
}
 
.subfooter-leyes {
  max-width: 1400px;
  margin: 0 auto 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  justify-content: center;
}
 
.subfooter-leyes a {
  font-family: var(--font-cuerpo);
  font-size: 11px;
  color: var(--texto-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: color 0.18s;
  line-height: 1.6;
}
.subfooter-leyes a:last-child { border-right: none; }
.subfooter-leyes a:hover { color: var(--dorado); }
 
.subfooter-checkbox {
  max-width: 1400px;
  margin: 0 auto 14px;
  text-align: center;
}
.subfooter-checkbox p {
  font-family: var(--font-cuerpo);
  font-size: 11px;
  color: var(--texto-muted);
  line-height: 1.6;
}
.subfooter-checkbox a { color: var(--dorado); text-decoration: none; }
 
.subfooter-copy {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}
.subfooter-copy strong {
  color: var(--dorado);
  font-weight: 900;
}
 
/* ─── Animaciones de entrada ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.footer-col { animation: fadeUp 0.55s ease both; }
.footer-col:nth-child(1) { animation-delay: 0.05s; }
.footer-col:nth-child(2) { animation-delay: 0.15s; }
.footer-col:nth-child(3) { animation-delay: 0.25s; }
.footer-col:nth-child(4) { animation-delay: 0.35s; }
 
/* ─── Mensaje de éxito ─── */
.form-success {
  display: none;
  background: rgba(66,106,90,0.2);
  border: 1px solid rgba(66,106,90,0.5);
  border-radius: 6px;
  padding: 14px 16px;
  text-align: center;
}
.form-success p {
  font-family: var(--font-cuerpo);
  font-size: 14px;
  color: var(--verde-claro);
  line-height: 1.5;
}
 
/* ═══ BANNER DE MARCA: Logo + Lema ═══ */
.footer-brand-banner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 36px 40px 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand-logo {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 18px rgba(249,163,64,0.45));
  transition: filter 0.3s, transform 0.3s;
}
.footer-brand-logo:hover {
  filter: drop-shadow(0 0 30px rgba(249,163,64,0.75));
  transform: scale(1.04);
}
.footer-brand-text { display: flex; flex-direction: column; gap: 4px; }
.footer-brand-nombre {
  font-family: var(--font-titulo);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blanco);
  line-height: 1.2;
}
.footer-brand-lema {
  font-family: var(--font-subtitulo);
  font-weight: 800;
  /* dorado + tamaño = DOBLE del col-heading (17px * 2 = 34px) */
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: var(--grad-titulo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Brillo animado suave */
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}
@media (max-width: 640px) {
  .footer-brand-banner { flex-direction: column; text-align: center; padding: 28px 20px 0; gap: 14px; }
  .footer-brand-lema { font-size: 26px; }
}
 