/* ============================================================
   TALENTUM PLUS v3
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --verde-deep:    #1B5E20;
  --verde-mid:     #2E7D32;
  --verde-light:   #388E3C;
  --dorado:        #D4AF37;
  --dorado-bright: #FFD700;
  --dorado-dark:   #A8860C;
  --blanco:        #FAFAFA;
  --gris-claro:    #F5F5F0;
  --gris-texto:    #4A4A4A;
  --negro-suave:   #1A1A1A;
  --sombra:        rgba(27,94,32,0.15);
  --sombra-dorada: rgba(212,175,55,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--negro-suave); background: var(--blanco); overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--verde-deep); }
::-webkit-scrollbar-thumb { background: var(--dorado); border-radius: 3px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dorado);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--verde-deep);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title span { color: var(--dorado); }
.section-subtitle { font-size: 1.05rem; color: var(--gris-texto); line-height: 1.7; max-width: 620px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-bright) 60%, var(--dorado) 100%);
  color: var(--verde-deep); font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 0.95rem; padding: 14px 30px; border-radius: 4px; border: none;
  cursor: pointer; text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--sombra-dorada); letter-spacing: 0.02em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--sombra-dorada); filter: brightness(1.05); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dorado); font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem; padding: 13px 28px; border-radius: 4px;
  border: 2px solid var(--dorado); cursor: pointer; text-decoration: none; transition: all 0.3s ease;
}
.btn-secondary:hover { background: var(--dorado); color: var(--verde-deep); }
.gold-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--dorado), var(--dorado-bright)); border-radius: 2px; margin-bottom: 24px; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(27,94,32,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.2); transition: all 0.3s ease;
}
#navbar.scrolled { background: rgba(27,94,32,0.99); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(250,250,250,0.85); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; padding: 8px 12px; border-radius: 3px; transition: all 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--dorado-bright); background: rgba(212,175,55,0.1); }
.nav-links a.active { color: var(--dorado-bright); }
.nav-cta {
  background: linear-gradient(135deg, var(--dorado), var(--dorado-bright)) !important;
  color: var(--verde-deep) !important; font-weight: 700 !important;
  padding: 10px 16px !important; border-radius: 4px !important;
  display: inline-flex !important; align-items: center !important;
}
.nav-cta:hover { filter: brightness(1.1); }
.nav-wa { white-space: nowrap; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dorado); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('../img/TP_hero_banner_v1.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 25%,
    rgba(13,43,16,0.35) 40%,
    rgba(13,43,16,0.72) 60%,
    rgba(13,43,16,0.88) 80%,
    rgba(13,43,16,0.92) 100%
  );
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
  padding: 80px 0;
  width: 100%;
}
.hero-content {
  grid-column: 2;
  text-align: left;
  padding-right: 32px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--blanco);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title .gold { color: var(--dorado-bright); }
.hero-title .italic { font-style: italic; font-weight: 600; }
.hero-desc {
  font-size: 1rem;
  color: rgba(250,250,250,0.9);
  line-height: 1.65;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  align-items: center;
}
.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  white-space: nowrap;
}

/* ── PROBLEMA ── */
#problema { padding: 100px 0; background: var(--gris-claro); position: relative; }
.problema-titulo-linea { white-space: nowrap; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.problema-subtitulo-full { max-width: 100% !important; margin-bottom: 48px; }
.problema-items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.problema-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px;
  background: white; border-radius: 8px; border-left: 3px solid var(--dorado);
  box-shadow: 0 2px 12px var(--sombra); transition: transform 0.2s;
}
.problema-item:hover { transform: translateX(4px); }
.pi-icon { width: 40px; height: 40px; min-width: 40px; background: linear-gradient(135deg, var(--verde-deep), var(--verde-mid)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.pi-text strong { display: block; font-size: 0.95rem; color: var(--negro-suave); margin-bottom: 4px; }
.pi-text span { font-size: 0.85rem; color: var(--gris-texto); line-height: 1.5; }
.problema-cta-centrado { text-align: center; }

/* ── SERVICIOS ── */
#servicios { padding: 100px 0; background: white; }
.servicios-header { text-align: center; margin-bottom: 60px; }
.servicios-header .gold-line { margin: 0 auto 24px; }
.servicios-header .section-subtitle { margin: 0 auto; text-align: center; }
.servicios-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.servicio-card { background: white; border: 1px solid rgba(27,94,32,0.1); border-radius: 12px; padding: 36px 32px; position: relative; overflow: hidden; transition: all 0.35s ease; cursor: default; }
.servicio-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--verde-deep), var(--dorado)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.servicio-card:hover { box-shadow: 0 12px 40px var(--sombra); transform: translateY(-4px); border-color: rgba(27,94,32,0.2); }
.servicio-card:hover::before { transform: scaleX(1); }
.servicio-card.featured { background: linear-gradient(135deg, var(--verde-deep) 0%, #143D17 100%); border-color: var(--dorado); color: white; }
.servicio-card.featured::before { transform: scaleX(1); background: linear-gradient(90deg, var(--dorado), var(--dorado-bright)); }
.sc-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dorado); background: rgba(212,175,55,0.1); padding: 4px 10px; border-radius: 100px; display: inline-block; margin-bottom: 16px; }
.featured .sc-tag { background: rgba(212,175,55,0.2); }
.sc-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.sc-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--verde-deep); margin-bottom: 10px; }
.featured .sc-title { color: var(--dorado-bright); }
.sc-desc { font-size: 0.9rem; color: var(--gris-texto); line-height: 1.65; margin-bottom: 20px; }
.featured .sc-desc { color: rgba(250,250,250,0.8); }
.sc-outcomes { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.sc-outcomes li { font-size: 0.85rem; color: var(--gris-texto); display: flex; gap: 8px; align-items: flex-start; }
.featured .sc-outcomes li { color: rgba(250,250,250,0.75); }
.sc-outcomes li::before { content: '✓'; color: var(--dorado); font-weight: 700; min-width: 16px; }
.sc-link { font-size: 0.85rem; font-weight: 600; color: var(--verde-mid); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.sc-link:hover { gap: 10px; }
.featured .sc-link { color: var(--dorado-bright); }

/* ── DIAGNÓSTICO ── */
#diagnostico { padding: 100px 0; background: linear-gradient(135deg, #0D2B10 0%, var(--verde-deep) 50%, #143D17 100%); position: relative; overflow: hidden; }
#diagnostico::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px); background-size: 50px 50px; }
.diagnostico-header { text-align: center; margin-bottom: 40px; position: relative; z-index: 1; }
.diagnostico-header .section-label { display: block; }
.diagnostico-header .gold-line { margin: 0 auto 0; }
.diag-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; position: relative; z-index: 1; }
.diag-info { position: sticky; top: 100px; }
.diag-info-title { color: var(--blanco) !important; font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important; margin-bottom: 20px; }
.diag-info-title span { color: var(--dorado-bright) !important; }
.diag-info-p { font-size: 1rem; color: rgba(250,250,250,0.72); line-height: 1.8; }
.diag-agent-wrap { width: 100%; }
.diag-container { background: rgba(250,250,250,0.04); border: 1px solid rgba(212,175,55,0.2); border-radius: 20px; padding: 40px; backdrop-filter: blur(10px); }
.diag-intro-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.diag-intro-card { background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2); border-radius: 8px; padding: 14px 10px; text-align: center; cursor: pointer; transition: all 0.2s; }
.diag-intro-card:hover { background: rgba(212,175,55,0.15); border-color: var(--dorado); }
.diag-intro-card.iniciar { background: linear-gradient(135deg, var(--dorado), var(--dorado-bright)); border-color: var(--dorado-bright); }
.diag-intro-card.iniciar:hover { filter: brightness(1.05); }
.dic-emoji { font-size: 1.5rem; margin-bottom: 6px; }
.dic-nombre { font-size: 0.72rem; color: rgba(250,250,250,0.75); font-weight: 500; line-height: 1.3; }
.dic-iniciar { font-size: 0.85rem; font-weight: 700; color: var(--verde-deep); }
.diag-progress-wrap { margin-bottom: 32px; }
.diag-progress-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.diag-step-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; color: var(--dorado); text-transform: uppercase; }
.diag-step-count { font-size: 0.85rem; color: rgba(250,250,250,0.5); }
.diag-progress-bar { height: 4px; background: rgba(250,250,250,0.1); border-radius: 2px; overflow: hidden; }
.diag-progress-fill { height: 100%; background: linear-gradient(90deg, var(--dorado), var(--dorado-bright)); border-radius: 2px; transition: width 0.5s ease; width: 0%; }
.diag-dimension { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.25); color: var(--dorado); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 20px; }
.diag-question { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--blanco); line-height: 1.5; margin-bottom: 28px; }
.diag-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.diag-option { background: rgba(250,250,250,0.05); border: 1px solid rgba(250,250,250,0.1); border-radius: 10px; padding: 14px 18px; color: rgba(250,250,250,0.85); font-size: 0.92rem; cursor: pointer; transition: all 0.2s; text-align: left; display: flex; align-items: center; gap: 12px; font-family: 'DM Sans', sans-serif; }
.diag-option:hover { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.4); color: var(--blanco); }
.diag-option.selected { background: rgba(212,175,55,0.15); border-color: var(--dorado); color: var(--blanco); }
.diag-option.selected .opt-dot { background: var(--dorado); }
.opt-dot { width: 16px; height: 16px; min-width: 16px; border-radius: 50%; border: 2px solid rgba(250,250,250,0.3); transition: all 0.2s; }
.diag-nav { display: flex; justify-content: space-between; align-items: center; }
.diag-btn-back { background: none; border: none; color: rgba(250,250,250,0.5); font-size: 0.9rem; cursor: pointer; padding: 8px 0; font-family: 'DM Sans', sans-serif; transition: color 0.2s; }
.diag-btn-back:hover { color: var(--dorado); }
.diag-btn-next { background: linear-gradient(135deg, var(--dorado), var(--dorado-bright)); color: var(--verde-deep); font-weight: 700; font-size: 0.95rem; padding: 12px 26px; border: none; border-radius: 6px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; display: flex; align-items: center; gap: 8px; }
.diag-btn-next:disabled { opacity: 0.4; cursor: not-allowed; }
.diag-btn-next:not(:disabled):hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.4); }
.diag-contact-form { display: flex; flex-direction: column; gap: 14px; }
.diag-field-label { font-size: 0.8rem; font-weight: 600; color: rgba(250,250,250,0.7); letter-spacing: 0.05em; margin-bottom: 6px; display: block; }
.diag-input { width: 100%; background: rgba(250,250,250,0.07); border: 1px solid rgba(250,250,250,0.15); border-radius: 8px; padding: 12px 14px; color: var(--blanco); font-family: 'DM Sans', sans-serif; font-size: 0.92rem; transition: border-color 0.2s; outline: none; }
.diag-input:focus { border-color: var(--dorado); }
.diag-input::placeholder { color: rgba(250,250,250,0.3); }
.diag-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.diag-result { text-align: center; }
.result-circle-wrap { position: relative; width: 160px; height: 160px; margin: 0 auto 28px; }
.result-circle-svg { transform: rotate(-90deg); }
.result-circle-bg { fill: none; stroke: rgba(250,250,250,0.08); stroke-width: 8; }
.result-circle-fill { fill: none; stroke: url(#goldGrad); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 440; stroke-dashoffset: 440; transition: stroke-dashoffset 1.5s ease; }
.result-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.result-pct { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--dorado-bright); line-height: 1; }
.result-pct-label { font-size: 0.72rem; color: rgba(250,250,250,0.5); margin-top: 2px; }
.result-nivel { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--blanco); margin-bottom: 10px; }
.result-nivel span { color: var(--dorado-bright); }
.result-desc { font-size: 0.92rem; color: rgba(250,250,250,0.75); line-height: 1.7; margin-bottom: 24px; max-width: 460px; margin-left: auto; margin-right: auto; }
.result-recomendaciones { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.result-rec-tag { background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.3); color: var(--dorado); font-size: 0.8rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.result-confirm { background: rgba(27,94,32,0.4); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; padding: 20px; margin-top: 8px; }
.result-confirm p { font-size: 0.9rem; color: rgba(250,250,250,0.8); line-height: 1.6; }
.result-confirm strong { color: var(--dorado-bright); }

/* ── ACCORDION CASOS ── */
#casos { padding: 100px 0; background: var(--gris-claro); }
.casos-header { text-align: center; margin-bottom: 60px; }
.casos-header .gold-line { margin: 0 auto 24px; }
.casos-header .section-subtitle { margin: 0 auto; text-align: center; }
.accordion-casos { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.accordion-item { background: white; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 24px var(--sombra); }
.accordion-trigger { width: 100%; background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; }
.acc-trigger-left { background: linear-gradient(135deg, var(--verde-deep), var(--verde-mid)); padding: 24px 28px; flex: 1; position: relative; overflow: hidden; }
.acc-trigger-left::after { content: ''; position: absolute; bottom: 0; right: 0; width: 100px; height: 100px; background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%); transform: translate(30%,30%); }
.acc-tipo { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dorado); margin-bottom: 6px; }
.acc-nombre { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--blanco); }
.acc-sector { font-size: 0.8rem; color: rgba(250,250,250,0.6); margin-top: 4px; }
.acc-trigger-right { padding: 24px 28px; display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 130px; background: white; }
.acc-ver-texto { font-size: 0.8rem; font-weight: 600; color: var(--verde-mid); white-space: nowrap; }
.acc-chevron { font-size: 0.8rem; color: var(--dorado); transition: transform 0.35s ease; display: block; }
.accordion-trigger[aria-expanded="true"] .acc-chevron { transform: rotate(180deg); }
.accordion-trigger[aria-expanded="true"] .acc-ver-texto { color: var(--dorado); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body-inner { padding: 28px 32px 32px; border-top: 1px solid rgba(27,94,32,0.08); }
.caso-challenge-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gris-texto); margin-bottom: 8px; }
.caso-challenge { font-size: 0.92rem; color: var(--gris-texto); line-height: 1.6; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(27,94,32,0.08); }
.caso-resultados { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.caso-resultado-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--negro-suave); }
.caso-resultado-item::before { content: '→'; color: var(--dorado-dark); font-weight: 700; min-width: 16px; }
.caso-servicio-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.caso-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; background: rgba(27,94,32,0.08); color: var(--verde-deep); padding: 4px 10px; border-radius: 100px; }

/* ── NOSOTROS ── */
#nosotros { padding: 100px 0; background: white; }
.nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.nosotros-mision-vision { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.mv-card { padding: 28px; border-radius: 10px; border-left: 4px solid var(--dorado); background: var(--gris-claro); }
.mv-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--verde-deep); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.mv-card-title span { font-size: 1.1rem; }
.mv-card p { font-size: 0.9rem; color: var(--gris-texto); line-height: 1.7; }
.valores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.valor-item { background: white; border: 1px solid rgba(27,94,32,0.1); border-radius: 10px; padding: 20px; transition: all 0.2s; }
.valor-item:hover { border-color: var(--dorado); box-shadow: 0 4px 16px var(--sombra-dorada); }
.valor-icon { font-size: 1.6rem; margin-bottom: 10px; }
.valor-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--verde-deep); margin-bottom: 6px; }
.valor-desc { font-size: 0.82rem; color: var(--gris-texto); line-height: 1.5; }
.nosotros-logo-area { display: flex; flex-direction: column; align-items: center; gap: 28px; padding: 40px; background: linear-gradient(135deg, var(--verde-deep), #0D2B10); border-radius: 16px; }
.orbital-wrap { position: relative; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; }
.orbital-glow { position: absolute; width: 200px; height: 200px; background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, transparent 70%); border-radius: 50%; animation: pulse-glow 3s ease-in-out infinite; }
@keyframes pulse-glow { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.1);opacity:1} }
.orbital-isotipo { width: 140px; height: auto; filter: drop-shadow(0 8px 28px rgba(212,175,55,0.4)); position: relative; z-index: 2; }
.orbital-ring { position: absolute; width: 196px; height: 196px; border: 1px dashed rgba(212,175,55,0.3); border-radius: 50%; animation: spin-slow 18s linear infinite; top: 50%; left: 50%; transform: translate(-50%,-50%); }
@keyframes spin-slow { to { transform: translate(-50%,-50%) rotate(360deg); } }
.orbital-dot { position: absolute; top: -5px; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; background: var(--dorado); border-radius: 50%; box-shadow: 0 0 8px var(--dorado-bright); animation: dot-pulse 2s ease-in-out infinite; }
@keyframes dot-pulse { 0%,100%{box-shadow:0 0 6px var(--dorado-bright)} 50%{box-shadow:0 0 16px var(--dorado-bright),0 0 28px rgba(212,175,55,0.4)} }
.nosotros-promise { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: rgba(250,250,250,0.85); text-align: center; line-height: 1.6; }
.nosotros-promise strong { color: var(--dorado-bright); font-style: normal; }
.nosotros-tp-titulo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; font-style: normal; color: var(--dorado-bright); letter-spacing: 0.08em; display: block; margin-bottom: 6px; }
.nosotros-colombia { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(250,250,250,0.5); }
.bandera-movil { display: none; }
.bandera-desktop { display: inline-flex; align-items: center; }

/* ── CONTACTO ── */
#contacto { padding: 100px 0; background: linear-gradient(135deg, #0D2B10 0%, var(--verde-deep) 100%); position: relative; overflow: hidden; }
#contacto::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 60%); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; position: relative; z-index: 1; }
.contacto-left .section-title { color: var(--blanco); }
.contacto-left .section-subtitle { max-width: 100%; }
.contacto-items { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.ci-item { display: flex; gap: 16px; align-items: center; color: rgba(250,250,250,0.8); font-size: 0.92rem; }
.ci-icon { width: 42px; height: 42px; min-width: 42px; background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.ci-text a { color: var(--dorado); text-decoration: none; }
.ci-text a:hover { color: var(--dorado-bright); }
.contacto-redes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.red-btn { display: inline-flex; align-items: center; gap: 7px; background: rgba(250,250,250,0.05); border: 1px solid rgba(250,250,250,0.15); color: rgba(250,250,250,0.75); font-size: 0.8rem; font-weight: 500; padding: 8px 14px; border-radius: 6px; text-decoration: none; transition: all 0.2s; }
.red-btn:hover { background: rgba(212,175,55,0.12); border-color: var(--dorado); color: var(--dorado); }
.contacto-form-card { background: rgba(250,250,250,0.04); border: 1px solid rgba(212,175,55,0.2); border-radius: 16px; padding: 40px; backdrop-filter: blur(10px); }
.cf-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--blanco); margin-bottom: 24px; }
.cf-success { background: rgba(27,94,32,0.5); border: 1px solid rgba(212,175,55,0.3); border-radius: 10px; padding: 20px; text-align: center; color: var(--dorado-bright); font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.cf-success.hidden { display: none; }
.cf-field { margin-bottom: 16px; }
.cf-label { display: block; font-size: 0.8rem; font-weight: 600; color: rgba(250,250,250,0.6); letter-spacing: 0.05em; margin-bottom: 6px; }
.cf-input, .cf-textarea { width: 100%; background: rgba(250,250,250,0.07); border: 1px solid rgba(250,250,250,0.12); border-radius: 8px; padding: 12px 16px; color: var(--blanco); font-family: 'DM Sans', sans-serif; font-size: 0.92rem; outline: none; transition: border-color 0.2s; }
.cf-input:focus, .cf-textarea:focus { border-color: var(--dorado); }
.cf-input::placeholder, .cf-textarea::placeholder { color: rgba(250,250,250,0.25); }
.cf-input option { background: #1B5E20; color: white; }
.cf-textarea { resize: vertical; min-height: 110px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-submit { width: 100%; margin-top: 8px; background: linear-gradient(135deg, var(--dorado), var(--dorado-bright)); color: var(--verde-deep); font-weight: 700; font-size: 1rem; padding: 15px; border: none; border-radius: 8px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.4); }

/* ── FOOTER ── */
#footer { background: #060F07; padding: 48px 0 28px; border-top: 1px solid rgba(212,175,55,0.15); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid rgba(250,250,250,0.05); margin-bottom: 20px; }
.footer-logo img { height: 52px; width: auto; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: rgba(250,250,250,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--dorado); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 0.78rem; color: rgba(250,250,250,0.3); }
.footer-copy span { color: var(--dorado); }
.footer-dev-link { color: var(--dorado); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.footer-dev-link:hover { color: var(--dorado-bright); }

/* ── ASISTENTE CONVERSACIONAL ── */
.ai-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 54px; height: 54px; background: linear-gradient(135deg, var(--verde-deep), #0D2B10); border: 2px solid var(--dorado); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dorado); cursor: pointer; box-shadow: 0 4px 20px rgba(212,175,55,0.3); transition: all 0.3s; animation: ai-pop 0.5s ease 1.5s both; }
.ai-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(212,175,55,0.45); }
@keyframes ai-pop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.ai-panel { position: fixed; bottom: 92px; right: 28px; z-index: 998; width: 340px; max-height: 480px; background: linear-gradient(160deg, #0D2B10, #1B5E20); border: 1px solid rgba(212,175,55,0.3); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.4); display: flex; flex-direction: column; transition: opacity 0.25s, transform 0.25s; }
.ai-panel.hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }
.ai-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid rgba(212,175,55,0.2); background: rgba(0,0,0,0.2); }
.ai-panel-title { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--blanco); }
.ai-dot { width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; animation: dot-blink 2s ease-in-out infinite; }
@keyframes dot-blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.ai-close-btn { background: none; border: none; color: rgba(250,250,250,0.5); cursor: pointer; font-size: 0.9rem; transition: color 0.2s; }
.ai-close-btn:hover { color: var(--dorado); }
.ai-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; scrollbar-width: thin; scrollbar-color: rgba(212,175,55,0.3) transparent; }
.ai-msg { font-size: 0.85rem; line-height: 1.55; padding: 10px 14px; border-radius: 10px; max-width: 92%; }
.ai-msg.bot { background: rgba(250,250,250,0.07); color: rgba(250,250,250,0.85); border: 1px solid rgba(212,175,55,0.15); align-self: flex-start; }
.ai-msg.bot strong { color: var(--dorado-bright); }
.ai-msg.user { background: linear-gradient(135deg, var(--dorado), var(--dorado-bright)); color: var(--verde-deep); font-weight: 600; align-self: flex-end; }
.ai-msg.typing { color: rgba(250,250,250,0.4); font-style: italic; align-self: flex-start; background: rgba(250,250,250,0.05); border: 1px solid rgba(212,175,55,0.1); }
.ai-options { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; align-self: flex-start; width: 100%; }
.ai-option-btn { background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.25); color: rgba(250,250,250,0.85); font-size: 0.82rem; padding: 8px 12px; border-radius: 8px; cursor: pointer; text-align: left; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.ai-option-btn:hover { background: rgba(212,175,55,0.18); border-color: var(--dorado); color: var(--blanco); }
.ai-input-row { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid rgba(212,175,55,0.15); }
.ai-input { flex: 1; background: rgba(250,250,250,0.07); border: 1px solid rgba(250,250,250,0.15); border-radius: 8px; padding: 10px 14px; color: var(--blanco); font-family: 'DM Sans', sans-serif; font-size: 0.88rem; outline: none; transition: border-color 0.2s; }
.ai-input:focus { border-color: var(--dorado); }
.ai-input::placeholder { color: rgba(250,250,250,0.3); }
.ai-input:disabled { opacity: 0.4; cursor: not-allowed; }
.ai-send-btn { background: var(--dorado); color: var(--verde-deep); border: none; border-radius: 8px; padding: 10px 14px; cursor: pointer; font-size: 0.9rem; font-weight: 700; transition: all 0.2s; }
.ai-send-btn:hover { background: var(--dorado-bright); transform: scale(1.05); }

/* ── ANIMACIONES ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .diag-split { grid-template-columns: 1fr; gap: 32px; }
  .diag-info { position: static; order: 1; }
  .diag-agent-wrap { order: 0; }
}
@media (max-width: 900px) {
  .hero-bg-image {
    background-image: url('../img/Alexa_2026IA.png');
    background-position: center top;
  }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(13,43,16,0.15) 0%, rgba(13,43,16,0.6) 45%, rgba(13,43,16,0.88) 70%, rgba(13,43,16,0.95) 100%);
  }
  .hero-inner { display: flex; justify-content: center; text-align: center; padding-top: 220px; }
  .hero-content { grid-column: auto; width: 100%; max-width: 100%; padding-right: 0; padding-left: 0; margin-left: 0; margin-right: 0; text-align: center; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .problema-items-grid { grid-template-columns: 1fr; }
  .problema-titulo-linea { white-space: normal; }
  .bandera-desktop { display: none; }
  .bandera-movil { display: inline; }
  .servicios-grid { grid-template-columns: 1fr; }
  .nosotros-grid { grid-template-columns: 1fr; gap: 48px; }
  .contacto-grid { grid-template-columns: 1fr; gap: 48px; }
  .valores-grid { grid-template-columns: 1fr; }
  .diag-form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(27,94,32,0.99); padding: 20px 24px; gap: 4px; border-bottom: 1px solid rgba(212,175,55,0.2); }
  .nav-hamburger { display: flex; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cf-row { grid-template-columns: 1fr; }
  .ai-panel { width: calc(100vw - 32px); right: 16px; }
  .ai-float { right: 16px; bottom: 20px; }
}
@media (max-width: 600px) {
  .diag-intro-cards { grid-template-columns: repeat(2,1fr); }
  .diag-container { padding: 24px 18px; }
  .accordion-trigger { flex-direction: column; align-items: stretch; }
  .acc-trigger-right { flex-direction: row; justify-content: space-between; min-width: unset; }
  .contacto-redes { gap: 8px; }
  .red-btn { font-size: 0.75rem; padding: 7px 10px; }
}
