/*
Theme Name: PC Talent Acquisition
Theme URI: https://pctalentacquisition.com
Author: P&C Talent Acquisition
Description: Tema profesional para P&C Talent Acquisition - Consultoría de Recursos Humanos
Version: 2.0.0
Text Domain: pctalent
*/

:root {
  --navy:       #172749;   /* azul marino oscuro del logo */
  --navy-mid:   #1e3360;   /* variante media del navy */
  --navy-light: #243d73;   /* navy más claro para degradados */
  --sky:        #5dc7ee;   /* azul cielo del logo */
  --sky-light:  #8ddaf4;   /* sky más claro */
  --sky-dark:   #3aadda;   /* sky más oscuro para hovers */
  --cream:      #f0f6fb;   /* fondo suave derivado del sky */
  --white:      #ffffff;
  --gray:       #5a6a7e;
  --light-gray: #f4f8fc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 20px 6vw;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(23, 39, 73, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(93,199,238,0.18);
  transition: padding .3s;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); letter-spacing: .02em;
  text-decoration: none;
}
.logo span { color: var(--sky); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,.75);
  font-size: .82rem; font-weight: 500; letter-spacing: .09em;
  text-transform: uppercase; transition: color .25s;
}
.nav-links a:hover { color: var(--sky); }
.nav-cta {
  background: var(--sky); color: var(--navy);
  padding: 10px 22px; border-radius: 3px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  transition: background .25s, transform .2s;
}
.nav-cta:hover { background: var(--sky-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 680px;
  background:
    linear-gradient(140deg, rgba(23,39,73,0.93) 0%, rgba(30,51,96,0.88) 55%, rgba(36,61,115,0.85) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 0 6vw;
}
/* Arcos decorativos inspirados en el ícono del logo */
.hero::before {
  content: '';
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 560px; height: 560px; border-radius: 50%;
  border: 80px solid rgba(93,199,238,.07);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  width: 380px; height: 380px; border-radius: 50%;
  border: 50px solid rgba(93,199,238,.1);
  pointer-events: none;
}
.hero-inner-arc {
  position: absolute; right: 155px; top: 50%; transform: translateY(-50%);
  width: 220px; height: 220px; border-radius: 50%;
  border: 32px solid rgba(93,199,238,.15);
  pointer-events: none; z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 660px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--sky); margin-bottom: 28px;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--sky); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.8vw, 5rem);
  font-weight: 300; line-height: 1.08;
  color: var(--white); margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--sky-light); }
.hero .hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.62);
  line-height: 1.78; max-width: 480px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--sky); color: var(--navy);
  padding: 14px 32px; border-radius: 3px;
  font-size: .85rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  box-shadow: 0 4px 24px rgba(93,199,238,.35);
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-primary:hover { background: var(--sky-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(93,199,238,.5); }
.btn-outline {
  border: 1.5px solid rgba(93,199,238,.5); color: var(--white);
  padding: 14px 32px; border-radius: 3px;
  font-size: .85rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  transition: border-color .25s, background .25s;
}
.btn-outline:hover { border-color: var(--sky); background: rgba(93,199,238,.1); }
.hero-stats {
  position: absolute; bottom: 56px; right: 6vw;
  display: flex; gap: 48px; z-index: 3;
}
.stat { text-align: right; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300; color: var(--white); line-height: 1;
}
.stat-number span { color: var(--sky); }
.stat-label { font-size: .7rem; color: rgba(255,255,255,.42); letter-spacing: .13em; text-transform: uppercase; margin-top: 4px; }

/* ── STRIP ── */
.strip {
  background: var(--sky); padding: 18px 6vw;
  display: flex; align-items: center; gap: 44px; overflow: hidden;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--navy); white-space: nowrap;
}
.strip-dot { width: 5px; height: 5px; background: var(--navy); border-radius: 50%; opacity: .35; }

/* ── SECTION HELPERS ── */
.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--sky-dark);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 26px; height: 1.5px; background: var(--sky-dark); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 300; color: var(--navy);
  line-height: 1.15; margin-bottom: 60px;
}

/* ── SERVICES ── */
.services { padding: 110px 6vw; background: var(--light-gray); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 2px; }
.service-card {
  background: var(--white);
  position: relative; overflow: hidden; transition: transform .3s;
  border-top: 3px solid transparent;
}
.service-card:hover { transform: translateY(-5px); border-top-color: var(--sky); }
.service-img {
  width: 100%; height: 200px;
  background-size: cover; background-position: center;
  position: relative;
}
.service-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(23,39,73,.35) 100%);
}
.service-body { padding: 36px 40px 44px; }
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  color: rgba(23,39,73,.05); line-height: 1;
  position: absolute; top: 212px; right: 28px;
}
.service-icon {
  width: 52px; height: 52px; margin-bottom: 28px;
  background: rgba(93,199,238,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--sky-dark); fill: none; stroke-width: 1.8; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600; color: var(--navy); margin-bottom: 14px;
}
.service-card p { font-size: .9rem; color: var(--gray); line-height: 1.8; }

/* ── ABOUT ── */
.about { padding: 110px 6vw; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  background: var(--navy);
  height: 480px; border-radius: 4px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(23,39,73,.5) 0%, rgba(23,39,73,.2) 100%);
  z-index: 1;
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--sky); padding: 28px 32px; border-radius: 3px; text-align: center;
  box-shadow: 0 8px 32px rgba(93,199,238,.35);
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.about-badge-txt {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--navy); opacity: .75; margin-top: 4px;
}
.about-content .section-title { margin-bottom: 22px; }
.about-content p { font-size: .97rem; color: #4a5a6e; line-height: 1.85; margin-bottom: 18px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.pillar {
  padding: 18px 20px;
  border: 1.5px solid rgba(93,199,238,.25); border-radius: 3px;
  transition: border-color .25s, background .25s;
}
.pillar:hover { border-color: var(--sky); background: rgba(93,199,238,.04); }
.pillar-icon { font-size: 1.3rem; margin-bottom: 8px; }
.pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 5px;
}
.pillar p { font-size: .8rem; color: var(--gray); line-height: 1.6; }

/* ── PROCESS ── */
.process { padding: 110px 6vw; background: var(--navy); }
.process .section-label { color: var(--sky); }
.process .section-label::before { background: var(--sky); }
.process .section-title { color: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 0; margin-top: 60px; }
.step {
  padding: 40px 32px;
  border-left: 1px solid rgba(93,199,238,.12);
  position: relative;
}
.step:first-child { border-left: none; }
.step::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--sky);
  transition: width .5s ease;
}
.step:hover::before { width: 100%; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(93,199,238,.18); line-height: 1; margin-bottom: 20px;
}
.step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.step p { font-size: .85rem; color: rgba(255,255,255,.48); line-height: 1.75; }

/* ── CTA BAND ── */
.cta-band {
  padding: 90px 6vw; background: var(--cream);
  display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,3.8vw,2.8rem); font-weight: 300; color: var(--navy); max-width: 520px; line-height: 1.2;
}
.cta-band h2 em { font-style: italic; color: var(--sky-dark); }
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-dark {
  background: var(--navy); color: var(--white); padding: 14px 32px; border-radius: 3px;
  font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  transition: background .25s, transform .2s;
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-sky {
  background: var(--sky); color: var(--navy); padding: 14px 32px; border-radius: 3px;
  font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  box-shadow: 0 4px 20px rgba(93,199,238,.3);
  transition: background .25s, transform .2s;
}
.btn-sky:hover { background: var(--sky-light); transform: translateY(-2px); }

/* ── CONTACT ── */
.contact { padding: 110px 6vw; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 300; color: var(--navy); margin-bottom: 22px; line-height: 1.15;
}
.contact-info > p { font-size: .95rem; color: var(--gray); line-height: 1.8; margin-bottom: 38px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(93,199,238,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--sky-dark); fill: none; stroke-width: 1.6; }
.contact-item-text { font-size: .88rem; color: var(--navy); font-weight: 600; }
.contact-item-sub { font-size: .77rem; color: var(--gray); }
.social-row { display: flex; gap: 10px; margin-top: 34px; flex-wrap: wrap; }
.social-btn {
  padding: 10px 20px; border: 1.5px solid rgba(23,39,73,.15); border-radius: 3px;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; color: var(--navy);
  transition: border-color .25s, background .25s, color .25s;
}
.social-btn:hover { border-color: var(--sky-dark); color: var(--sky-dark); background: rgba(93,199,238,.06); }

/* FORM */
.contact-form-wrap {
  background: var(--navy); padding: 52px 44px; border-radius: 4px;
  box-shadow: 0 20px 60px rgba(23,39,73,.18);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400; color: var(--white); margin-bottom: 32px;
}
.form-title span { color: var(--sky); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(93,199,238,.18);
  color: var(--white); padding: 13px 16px; border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; outline: none; transition: border-color .25s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.27); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sky); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 108px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; background: var(--sky); color: var(--navy); border: none; padding: 15px;
  font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; border-radius: 3px; cursor: pointer;
  transition: background .25s, transform .2s; margin-top: 8px;
  box-shadow: 0 4px 20px rgba(93,199,238,.3);
}
.form-submit:hover { background: var(--sky-light); transform: translateY(-1px); }

/* ── FOOTER ── */
footer.site-footer { background: #0e1e38; padding: 52px 6vw 32px; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(93,199,238,.1); margin-bottom: 28px;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.footer-logo span { color: var(--sky); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: .77rem; color: rgba(255,255,255,.38); text-decoration: none;
  letter-spacing: .1em; text-transform: uppercase; transition: color .2s;
}
.footer-links a:hover { color: var(--sky); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: .74rem; color: rgba(255,255,255,.22); }

/* ── WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.65); }
}
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-stats { display: none; }
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -16px; }
  .hero::before, .hero::after, .hero-inner-arc { display: none; }
}
@media (max-width: 640px) {
  .cta-band { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 22px; }
  .strip { gap: 22px; }
}
