/* ============================================================
   CLICK TO ACTION SAS — Styles
   ============================================================ */

:root {
  --orange:      #FF6B2B;
  --orange-dk:   #E55520;
  --orange-lt:   #FF8F5E;
  --orange-glow: rgba(255,107,43,0.15);
  --ink:         #0D0D0D;
  --ink-2:       #1A1A1A;
  --text:        #3A3A3A;
  --muted:       #888;
  --border:      #E8E8E8;
  --bg:          #FFFFFF;
  --bg-soft:     #FAF9F7;
  --font-main:   'Outfit', sans-serif;
  --font-script: 'WindSong', cursive;
  --radius:      12px;
  --section-py:  6rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── LOGO LOCKUP ── */
.logo-lockup {
  display: inline-block;
  position: relative;
}
.logo-img {
  height: 55px;
  width: auto;
  display: block;
}
/* Alternar logos según scroll */
.logo-img--white { display: block; }
.logo-img--color { display: none; height: 61px; }
.nav.is-scrolled .logo-img--white { display: none; }
.nav.is-scrolled .logo-img--color { display: block; }

.logo-sas {
  font-family: var(--font-script);
  font-size: 40px;
  color: var(--orange);
  line-height: 1;
  position: absolute;
  bottom: -20px;
  right: -37px;
}
/* sas naranja cuando nav scrolleada */
.nav.is-scrolled .logo-sas { color: var(--orange); bottom: -19px; }

.logo-lockup--sm .logo-img { height: 36px; }
.logo-lockup--sm .logo-sas { font-size: 19px; bottom: 0px; right: -14px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo { text-decoration: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--orange); }
.btn-cta {
  background: var(--orange);
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.btn-cta:hover { background: var(--orange-dk) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn--orange { background: var(--orange); color: white; }
.btn--orange:hover { background: var(--orange-dk); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--full { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(255,107,43,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,107,43,0.06) 0%, transparent 60%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,107,43,0.3);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}
.hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__badges img {
  height: 32px;
  width: auto;
  opacity: 0.6;
  filter: brightness(10);
  transition: opacity 0.2s;
}
.hero__badges img:hover { opacity: 1; }

/* ── STATS ── */
.stats {
  padding: 3rem 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 3rem;
}
.stat strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat span {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}
.stat__div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── SECTION HEADER ── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section__title em { font-style: normal; color: var(--orange); }
.section__desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.section__header .section__desc { margin: 0 auto; }

/* ── SERVICES ── */
.services {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px var(--orange-glow);
  transform: translateY(-3px);
}
.service-card--featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, #fff 0%, rgba(255,107,43,0.04) 100%);
}
.service-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}
.service-card__icon {
  margin-bottom: 1.25rem;
  color: var(--orange);
}
.service-card__icon img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-card ul {
  list-style: none;
  margin-bottom: 1.25rem;
}
.service-card ul li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.3rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.2s;
}
.card-link:hover { text-decoration: underline; }

/* ── WHY ── */
.why {
  padding: var(--section-py) 0;
  background: var(--ink);
}
.why .eyebrow { color: var(--orange-lt); }
.why .section__title { color: white; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 0;
}
.why__item {
  border-top: 2px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  transition: border-color 0.3s;
}
.why__item:hover { border-color: var(--orange); }
.why__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.why__item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}
.why__item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── CLIENTS ── */
.clients {
  padding: var(--section-py) 0;
  background: var(--bg-soft);
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.client-logo:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px var(--orange-glow);
}
.client-logo img {
  max-height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}
.client-logo:hover img { filter: grayscale(0%); opacity: 1; }

/* ── CONTACT ── */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact__info .section__title { text-align: left; }
.contact__info .eyebrow { text-align: left; }
.contact__info > p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}
.contact__form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form__group {
  margin-bottom: 1.25rem;
}
.form__group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--orange); }
.form__group textarea { resize: vertical; }
.form__note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}

.contact__center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.contact__center .section__title { margin-bottom: 1rem; }
.contact__desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.btn--wa {
  background: #25D366;
  color: white;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.45);
  background: #20c05a;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink-2);
  padding: 4rem 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.partner-badge {
  display: inline-block;
  margin-top: 1.25rem;
  transition: opacity 0.2s, transform 0.2s;
}
.partner-badge img {
  height: 80px;
  width: auto;
  border-radius: 8px;
}
.partner-badge:hover { opacity: 0.85; transform: scale(1.03); }
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
  line-height: 1.7;
}
.footer__nav h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer__nav ul { list-style: none; }
.footer__nav ul li { margin-bottom: 0.5rem; }
.footer__nav ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__nav ul a:hover { color: var(--orange); }
.footer__bottom {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── WA FAB ── */
.wa-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  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,0.4);
  z-index: 90;
  transition: transform 0.2s;
}
.wa-fab:hover { transform: scale(1.08); }

/* ── AOS ── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
[data-aos].is-visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 4rem; }
  .nav__links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: white; flex-direction: column; padding: 2rem; gap: 1.25rem; border-bottom: 1px solid var(--border); }
  .nav__links.is-open { display: flex; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .stat { padding: 1rem 1.5rem; }
  .stat__div { display: none; }
  .stats__grid { gap: 0; }
}
