/* =========================================================
   ARGUS SERVICIOS — STYLES
   Ordenado y consolidado
   ========================================================= */

/* ---------------------------------------------------------
   1. VARIABLES
   --------------------------------------------------------- */
:root {
  --color-primary: #00c7b2;
  --color-primary-dark: #00a495;
  --color-accent: #dfdf00;
  --color-green: #00c7b2;
  --color-dark: #747678;
  --color-text: #747678;
  --color-muted: #a2a3a9;
  --color-light: #f7f8f8;
  --color-white: #ffffff;
  --color-border: #e5e8e8;

  --shadow: 0 24px 70px rgba(32, 40, 45, 0.10);
  --shadow-soft: 0 12px 40px rgba(32, 40, 45, 0.08);

  --container: 1180px;
  --font-primary: "Arimo", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ---------------------------------------------------------
   2. RESET / BASE
   --------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: var(--color-dark);
  background: var(--color-accent);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--color-dark);
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------
   3. TIPOGRAFÍA COMPARTIDA
   --------------------------------------------------------- */
.eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow.light {
  color: #fff;
}

.hero h1,
.section-heading h2,
.intro-grid h2,
.feature-panel h2,
.cta-box h2,
.contact-copy h2 {
  margin: 0;
  color: var(--color-dark);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

/* ---------------------------------------------------------
   4. HEADER
   --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: 0.25s ease;
}

.site-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    #00c7b2 0%,
    #00c7b2 53.2%,
    #747678 53.2%,
    #747678 70.2%,
    #dfdf00 70.2%,
    #dfdf00 83%,
    #747678 83%,
    #747678 100%
  );
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(20, 28, 30, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  gap: 24px;
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.22s;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a.nav-rrhh {
  color: var(--color-primary);
}

.btn.header-rrhh-mobile {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--color-border);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--color-dark);
  transition: 0.2s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------------------------------------------------------
   5. BOTONES
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  gap: 9px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn svg {
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-primary {
  color: #fff;
  background: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-secondary {
  color: var(--color-dark);
  background: #fff;
  border-color: var(--color-border);
}

.btn-light {
  color: var(--color-dark);
  background: #fff;
}

/* ---------------------------------------------------------
   6. HERO
   --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(700px, 82vh, 880px);
  overflow: hidden;
}

/* El H1 vuelve a tener la misma jerarquía visual que el resto del sitio. */
.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 4.6vw, 64px);
}

.hero-text,
.hero-slide-text {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 20px;
}

.hero-slide-text {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(48px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 800;
}

.trust-row span {
  position: relative;
  padding-right: 20px;
}

.trust-row span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  background-size: cover;
  background-position: right top;
  transform: translateX(100%);
  transition: transform 1.3s ease;
}

.hero-slide.is-active {
  transform: translateX(0);
}

.hero-slide.is-prev {
  transform: translateX(-100%);
}

.hero-slide.is-parking {
  transition: none;
}

.hero-slide-focus-left {
  background-position: 25% top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 15, 0.75) 0%, rgba(10, 14, 15, 0.45) 55%, rgba(10, 14, 15, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 76px 0;
  color: #fff;
}

.hero-content h1 {
  color: #fff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.25s ease;
}

.hero-arrow:hover {
  background: var(--color-green);
  border-color: var(--color-green);
}

.hero-arrow-prev {
  left: 20px;
}

.hero-arrow-next {
  right: 20px;
}

.clients-bar {
  padding: 72px 0;
  border-bottom: 1px solid var(--color-border);
}

.clients-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.clients-title {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 64px;
}

.clients-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.clients-count strong {
  color: var(--color-dark);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.clients-logos img {
  height: 97px;
  width: auto;
  max-width: 264px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.clients-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ---------------------------------------------------------
   7. INTRO / HEADINGS
   --------------------------------------------------------- */
.intro-band {
  padding: 70px 0;
  background: var(--color-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.intro-grid h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

.intro-grid h2::after {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  margin-top: 18px;
  background: url('../assets/images/brand-bar.svg') no-repeat left center / contain;
}

.intro-grid p {
  margin: 0;
  font-size: 19px;
}

mark.highlight {
  padding: 0 4px;
  color: var(--color-dark);
  background: var(--color-accent);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.section-heading p {
  margin: 20px 0 0;
  font-size: 18px;
}

/* ---------------------------------------------------------
   8. SERVICIOS
   --------------------------------------------------------- */
.services-block-text {
  margin: 0 0 28px;
  color: var(--color-muted);
  font-size: 16px;
}

.tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--color-border);
}

.tab {
  position: relative;
  top: 2px;
  margin-right: 32px;
  padding: 12px 4px;
  appearance: none;
  cursor: pointer;
  color: var(--color-muted);
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

.tab.is-active {
  color: var(--color-dark);
  border-bottom-color: var(--color-primary);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.tab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tab-card {
  border: 1px solid var(--color-border);
  transition: 0.25s ease;
}

.tab-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.tab-card .photo {
  height: 170px;
  background-color: var(--color-light);
  background-position: center;
  background-size: cover;
}

.tab-card .body {
  padding: 18px 20px 22px;
  background: #fff;
}

.tab-card h3 {
  margin: 0 0 6px;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.tab-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13.5px;
  line-height: 1.45;
}

/* ---------------------------------------------------------
   9. DIFERENCIALES
   --------------------------------------------------------- */
.features-section {
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
}

.feature-panel,
.features-list {
  height: 100%;
}

.feature-panel {
  position: relative;
  display: flex;
  min-height: 420px;
  padding: 48px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 30, 28, 0.55), rgba(0, 105, 92, 0.8));
}

.feature-panel > * {
  position: relative;
}

.feature-panel h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 66px);
}

.feature-panel p {
  max-width: 540px;
  font-size: 18px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.features-list > div {
  display: flex;
  padding: 26px 24px;
  flex-direction: column;
  gap: 14px;
  color: var(--color-dark);
  background: #fff;
  font-weight: 800;
}

.features-list p {
  margin: 0;
  font-size: 17.5px;
  line-height: 1.4;
}

.feature-icon {
  display: flex;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.feature-icon svg,
.feature-icon img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.feature-icon img.feature-icon-thin {
  width: 50px;
  height: 50px;
}

/* ---------------------------------------------------------
   10. CTA
   --------------------------------------------------------- */
.cta-section {
  padding: 60px 0;
}

.cta-box {
  position: relative;
  display: flex;
  padding: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  color: #fff;
  background: var(--color-primary);
}

.cta-box > * {
  position: relative;
}

.cta-box h2 {
  max-width: 740px;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
}

.cta-box p:not(.eyebrow) {
  max-width: 620px;
  font-size: 18px;
}

/* ---------------------------------------------------------
   11. GALERÍA
   --------------------------------------------------------- */
.gallery-section {
  background: var(--color-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--color-border);
}

.gallery-grid img:first-child {
  grid-row: span 2;
  height: 520px;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3) {
  height: 250px;
}

/* ---------------------------------------------------------
   12. CONTACTO
   --------------------------------------------------------- */
.contact-section {
  background: linear-gradient(180deg, var(--color-light), #fff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 64px;
}

.contact-copy {
  min-width: 0;
}

.contact-copy h2 {
  font-size: clamp(38px, 5vw, 66px);
}

.contact-copy > p:not(.eyebrow) {
  font-size: 18px;
}

.contact-coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-coverage span {
  position: relative;
  padding-right: 18px;
}

.contact-coverage span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 4px;
  height: 4px;
  background: var(--color-muted);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Datos + iconos lineales verdes, sin cajas ni fondos */
.contact-data {
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
}

.contact-data > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-areas:
    "icon label"
    "icon value";
  column-gap: 14px;
  row-gap: 2px;
  align-items: start;
  font-size: 15px;
}

.contact-data > div::before {
  content: "";
  grid-area: icon;
  display: block;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  background-color: var(--color-primary);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.contact-data dt {
  grid-area: label;
  min-width: 0;
  margin: 0;
  color: var(--color-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-data dd {
  grid-area: value;
  margin: 0;
  color: var(--color-text);
  line-height: 1.45;
}

.contact-data a {
  color: var(--color-primary);
  font-weight: 800;
}

/* WhatsApp */
.contact-data > div:nth-child(1)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.75 13.96c-.25-.13-1.47-.73-1.7-.81-.23-.08-.39-.13-.56.13-.16.25-.64.81-.78.98-.14.17-.29.19-.54.06-.25-.13-1.05-.39-2-1.24-.74-.66-1.24-1.47-1.38-1.72-.14-.25-.02-.38.11-.51.11-.11.25-.29.37-.43.12-.15.16-.25.25-.42.08-.17.04-.32-.02-.45-.06-.13-.56-1.34-.76-1.84-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.44.06-.67.31-.23.25-.88.86-.88 2.1s.9 2.44 1.03 2.61c.13.17 1.77 2.7 4.29 3.79.6.26 1.07.41 1.44.53.6.19 1.15.16 1.58.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.08.15-1.18-.06-.1-.23-.16-.48-.29M12.04 21.5h-.01a9.43 9.43 0 0 1-4.8-1.31l-.34-.2-3.57.94.95-3.48-.22-.36A9.45 9.45 0 1 1 12.04 21.5m8.03-17.56A11.31 11.31 0 0 0 12.03.6C5.78.6.7 5.68.7 11.93c0 2 .52 3.95 1.51 5.67L.6 23.4l5.94-1.56a11.32 11.32 0 0 0 5.49 1.4h.01c6.25 0 11.33-5.08 11.33-11.33 0-3.03-1.18-5.88-3.3-8.02'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.75 13.96c-.25-.13-1.47-.73-1.7-.81-.23-.08-.39-.13-.56.13-.16.25-.64.81-.78.98-.14.17-.29.19-.54.06-.25-.13-1.05-.39-2-1.24-.74-.66-1.24-1.47-1.38-1.72-.14-.25-.02-.38.11-.51.11-.11.25-.29.37-.43.12-.15.16-.25.25-.42.08-.17.04-.32-.02-.45-.06-.13-.56-1.34-.76-1.84-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.44.06-.67.31-.23.25-.88.86-.88 2.1s.9 2.44 1.03 2.61c.13.17 1.77 2.7 4.29 3.79.6.26 1.07.41 1.44.53.6.19 1.15.16 1.58.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.08.15-1.18-.06-.1-.23-.16-.48-.29M12.04 21.5h-.01a9.43 9.43 0 0 1-4.8-1.31l-.34-.2-3.57.94.95-3.48-.22-.36A9.45 9.45 0 1 1 12.04 21.5m8.03-17.56A11.31 11.31 0 0 0 12.03.6C5.78.6.7 5.68.7 11.93c0 2 .52 3.95 1.51 5.67L.6 23.4l5.94-1.56a11.32 11.32 0 0 0 5.49 1.4h.01c6.25 0 11.33-5.08 11.33-11.33 0-3.03-1.18-5.88-3.3-8.02'/%3E%3C/svg%3E");
}

/* Teléfono */
.contact-data > div:nth-child(2)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8a15.5 15.5 0 0 0 6.6 6.6l2.2-2.2c.28-.28.68-.37 1.04-.25 1.14.38 2.37.58 3.56.58.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.23.2 2.42.58 3.56.12.36.03.76-.25 1.04z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8a15.5 15.5 0 0 0 6.6 6.6l2.2-2.2c.28-.28.68-.37 1.04-.25 1.14.38 2.37.58 3.56.58.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.23.2 2.42.58 3.56.12.36.03.76-.25 1.04z'/%3E%3C/svg%3E");
}

/* Email */
.contact-data > div:nth-child(3)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 4-8 5-8-5V6l8 5 8-5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 4-8 5-8-5V6l8 5 8-5z'/%3E%3C/svg%3E");
}

/* Dirección */
.contact-data > div:nth-child(4)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7m0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7m0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5'/%3E%3C/svg%3E");
}

/* Horario */
.contact-data > div:nth-child(5)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m1 11h-5V7h2v4h3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m1 11h-5V7h2v4h3z'/%3E%3C/svg%3E");
}

/* Instagram */
.contact-data > div:nth-child(6)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zm10.5 1.5A1.25 1.25 0 1 1 17.5 8a1.25 1.25 0 0 1 0-2.5M12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10m0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zm10.5 1.5A1.25 1.25 0 1 1 17.5 8a1.25 1.25 0 0 1 0-2.5M12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10m0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6'/%3E%3C/svg%3E");
}

/* RRHH */
.rrhh-block {
  display: flex;
  margin-top: 34px;
  padding-top: 26px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-top: 1px solid var(--color-border);
}

.rrhh-block p {
  margin: 0;
  color: var(--color-dark);
  font-size: 17px;
  font-weight: 500;
}

.btn-careers {
  display: inline-flex;
  width: auto;
  min-width: 210px;
  min-height: 56px;
  margin-top: 0;
  padding: 0 30px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-green);
  border: 1px solid var(--color-green);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
}

.btn-careers:hover {
  color: #fff;
  background: var(--color-green);
  border-color: var(--color-green);
}

/* Formulario */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 16px;
  color: var(--color-dark);
  background: var(--color-light);
  border: 1px solid var(--color-border);
  outline: none;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 199, 178, 0.12);
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form button {
  cursor: pointer;
  border: 0;
}

.contact-form button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.form-feedback {
  min-height: 0;
  font-size: 14px;
  font-weight: 800;
}

.form-feedback:empty {
  display: none;
}

.form-feedback.is-success {
  color: var(--color-green);
}

.form-feedback.is-error {
  color: #d6336c;
}

.whatsapp-fallback {
  margin-top: 4px;
  font-size: 14px;
}

/* ---------------------------------------------------------
   13. FOOTER / WHATSAPP
   --------------------------------------------------------- */
.site-footer {
  position: relative;
  padding: 38px 0;
  background: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    #00c7b2 0%,
    #00c7b2 53.2%,
    #747678 53.2%,
    #747678 70.2%,
    #dfdf00 70.2%,
    #dfdf00 83%,
    #747678 83%,
    #747678 100%
  );
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner img {
  width: 160px;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  width: 60px;
  height: 60px;
  padding: 0;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}

.whatsapp-float svg {
  display: block;
  flex: 0 0 auto;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

/* ---------------------------------------------------------
   14. ANIMACIONES
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .tab-card:hover {
    transform: none;
  }
}

/* ---------------------------------------------------------
   15. RESPONSIVE — TABLET
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  .header-cta {
    display: none;
  }

  .intro-grid,
  .features-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }

  .clients-bar-inner {
    gap: 36px;
  }

  .clients-count strong {
    font-size: 34px;
  }

  .clients-logos {
    gap: 44px;
  }

  .clients-logos img {
    height: 78px;
  }

  .tab-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
    height: 330px;
  }

  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3) {
    height: 330px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .tab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------------------------------------------------------
   16. RESPONSIVE — MOBILE
   --------------------------------------------------------- */
@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .clients-bar {
    padding: 48px 0;
  }

  .clients-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }

  .clients-count strong {
    font-size: 30px;
  }

  .clients-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 32px 24px;
  }

  .clients-logos img {
    height: 60px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-slide {
    background-position: center top;
  }

  .hero-content {
    padding: 56px 0;
  }

  .section {
    padding: 70px 0;
  }

  .header-inner {
    position: relative;
    height: 81px;
  }

  .brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .brand img {
    width: 150px;
  }

  .btn.header-rrhh-mobile {
    display: inline-flex;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
    color: #fff;
    background: var(--color-green);
    border: 1px solid var(--color-green);
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 20px;
    pointer-events: none;
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-12px);
    transition: 0.22s;
  }

  .site-nav.is-open {
    pointer-events: auto;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero h1,
  .hero-slide-text {
    font-size: 46px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-arrow {
    top: auto;
    bottom: 20px;
    width: 36px;
    height: 36px;
    font-size: 18px;
    transform: none;
  }

  .tab-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    gap: 0;
  }

  .tab {
    margin-right: 20px;
    font-size: 13px;
  }

  .feature-panel,
  .cta-box,
  .contact-form {
    padding: 24px;
  }

  .feature-panel,
  .features-list {
    height: auto;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-data > div {
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 12px;
  }

  .rrhh-block {
    align-items: stretch;
  }

  .btn-careers {
    width: 100%;
  }

  .footer-inner {
    display: grid;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .gallery-grid img,
  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3) {
    height: 260px;
  }
}