@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --wc-primary: #154f81;
  --wc-secondary: #1e88a8;
  --wc-accent: #42a1a5;
  --wc-accent-light: #b9e3e2;
  --wc-dark: #052b3a;
  --wc-light: #f5fbff;
  --wc-text: #1f2a35;
  @import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
  --wc-muted: #6e7a87;
  --wc-gradient: linear-gradient(135deg,
      rgba(0, 109, 155, 0.92),
      rgba(30, 136, 168, 0.85));
  --wc-radius: 22px;
  --wc-shadow: 0 24px 36px rgba(5, 43, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--wc-text);
  background-color: #fff;
  padding-top: 78px;
}

a {
  color: var(--wc-primary);
  text-decoration: none;
}

a:hover {
  color: var(--wc-accent);
}

p {
  font-weight: 700;
}

.btn-primary {
  background: var(--wc-primary);
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--wc-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 79, 129, 0.3);
}

.btn-secondary {
  background: var(--wc-accent);
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--wc-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 161, 165, 0.3);
}

.btn-outline-primary {
  border-radius: 999px;
  border-width: 2px;
  border-color: var(--wc-primary);
  color: var(--wc-primary);
  font-weight: 600;
}

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

.btn-square {
  border-radius: unset;
}

.section-heading {
  font-weight: 900;
  color: var(--wc-primary);
  font-size: 2.5rem;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    left: -10px;
    bottom: 7px;
    background-color: var(--wc-accent);
    width: 2px;
    height: 80%;
  }
}

.home-intro {
  font-size: 1rem;
  line-height: 1.8;
}

.home-intro-highlight {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--wc-primary);
}

.home-cta-wrapper {
  border-radius: 8px;
  position: relative;
}

.home-cta-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/g16.png");
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.15;
  pointer-events: none;
}

.text-accent {
  color: var(--wc-accent) !important;
}

.consultoria-intro {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 400;
}

.text-highlight {
  color: var(--wc-secondary);
  font-weight: 700;
  font-size: 1.35rem;
}

.pilares-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--wc-primary);
  position: relative;
  display: inline-block;
}

/* Línea de títulos removida por solicitud del cliente */
/*
.pilares-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--wc-accent);
  border-radius: 2px;
}
*/

.pilares-subtitle {
  font-size: 1.1rem;
  color: var(--wc-muted);
  font-weight: 400;
  margin-top: 1.5rem;
}

.staffing-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--wc-primary);
  margin-bottom: 3rem;
}

.differentiator-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.differentiator-item {
  padding: 2rem;
  background: #fff;
  border-left: 4px solid var(--wc-accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.differentiator-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-left-color: var(--wc-primary);
}

.differentiator-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.differentiator-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
}

.differentiator-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wc-primary);
  margin: 0;
}

.differentiator-detail {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--wc-muted);
  margin: 0;
  padding-left: 3rem;
}

.benefits-accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-top: 4px solid var(--wc-primary) !important;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  padding-left: 1rem;
}

.accordion-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wc-primary);
  margin: 0;
  transition: color 0.3s ease;
}

.accordion-header:hover .accordion-title {
  color: var(--wc-accent);
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--wc-accent);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 1.5rem 0 2rem 0;
}

.accordion-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--wc-muted);
  margin: 0;
}

.accordion-content img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profiles-subtitle {
  font-size: 1.1rem;
  color: var(--wc-accent);
  font-weight: 500;
}

.profiles-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 0;
}

.profile-tag {
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 2px solid var(--wc-primary);
  color: var(--wc-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: default;
}

.profile-tag:hover {
  background: var(--wc-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 79, 129, 0.2);
}

.recruiting-intro {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--wc-dark);
}

.recruiting-image-wrapper {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(195, 223, 244, 0.3) 0%, rgba(185, 227, 226, 0.2) 100%);
  border-radius: 8px;
}

.recruiting-image {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.recruiting-image-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--wc-accent);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

.recruiting-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background: var(--wc-secondary);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.cultura-propuestas {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.propuesta-item {
  background: #fff;
  border-bottom: 1px solid rgba(0, 181, 184, 0.3);
  transition: all 0.3s ease;
}

.propuesta-item:first-child {
  border-top: 3px solid var(--wc-accent);
}

.propuesta-item:last-child {
  border-bottom: 3px solid var(--wc-accent);
}

.propuesta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(195, 223, 244, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  transition: all 0.3s ease;
}

.propuesta-header:hover {
  background: linear-gradient(90deg, rgba(195, 223, 244, 0.15) 0%, rgba(255, 255, 255, 1) 100%);
}

.propuesta-item.active .propuesta-header {
  background: linear-gradient(90deg, rgba(0, 181, 184, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.propuesta-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--wc-primary);
  margin: 0;
  transition: color 0.3s ease;
}

.propuesta-header:hover .propuesta-title {
  color: var(--wc-accent);
}

.propuesta-toggle {
  font-size: 1.25rem;
  color: var(--wc-accent);
  transition: transform 0.3s ease;
}

.propuesta-item.active .propuesta-toggle {
  transform: rotate(180deg);
}

.propuesta-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
  background: rgba(245, 250, 252, 0.5);
}

.propuesta-item.active .propuesta-body {
  max-height: 2000px;
  padding: 1.5rem 2rem 2rem 2rem;
}

.propuesta-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wc-muted);
  margin: 0;
}

/* Acordeón Consultoría */
.consultoria-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.consultoria-acc-item {
  background: #fff;
  border-bottom: 1px solid rgba(21, 79, 129, 0.2);
  transition: all 0.3s ease;
}

.consultoria-acc-item:first-child {
  border-top: 3px solid var(--wc-primary);
}

.consultoria-acc-item:last-child {
  border-bottom: 3px solid var(--wc-primary);
}

.consultoria-acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(21, 79, 129, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
  transition: all 0.3s ease;
}

.consultoria-acc-header:hover {
  background: linear-gradient(90deg, rgba(21, 79, 129, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
}

.consultoria-acc-item.active .consultoria-acc-header {
  background: linear-gradient(90deg, rgba(21, 79, 129, 0.12) 0%, rgba(255, 255, 255, 1) 100%);
}

.consultoria-acc-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--wc-primary);
  margin: 0;
  transition: color 0.3s ease;
}

.consultoria-acc-header:hover .consultoria-acc-title {
  color: var(--wc-accent);
}

.consultoria-acc-toggle {
  font-size: 1.25rem;
  color: var(--wc-primary);
  transition: transform 0.3s ease;
}

.consultoria-acc-item.active .consultoria-acc-toggle {
  transform: rotate(180deg);
}

.consultoria-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
  background: rgba(21, 79, 129, 0.02);
}

.consultoria-acc-item.active .consultoria-acc-body {
  max-height: 500px;
  padding: 1.5rem 2rem 2rem 2rem;
}

.consultoria-acc-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wc-muted);
  margin: 0;
}

/* Acordeón Staffing */
.staffing-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.staffing-acc-item {
  background: #fff;
  border-bottom: 1px solid rgba(0, 181, 184, 0.25);
  transition: all 0.3s ease;
}

.staffing-acc-item:first-child {
  border-top: 3px solid var(--wc-accent);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.staffing-acc-item:last-child {
  border-bottom: 3px solid var(--wc-accent);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.staffing-acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
}

.staffing-acc-header:hover {
  background: rgba(0, 181, 184, 0.05);
}

.staffing-acc-item.active .staffing-acc-header {
  background: rgba(0, 181, 184, 0.08);
}

.staffing-acc-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--wc-primary);
  margin: 0;
  transition: color 0.3s ease;
}

.staffing-acc-header:hover .staffing-acc-title {
  color: var(--wc-accent);
}

.staffing-acc-toggle {
  font-size: 1.25rem;
  color: var(--wc-accent);
  transition: transform 0.3s ease;
}

.staffing-acc-item.active .staffing-acc-toggle {
  transform: rotate(180deg);
}

.staffing-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
  background: rgba(0, 181, 184, 0.03);
}

.staffing-acc-item.active .staffing-acc-body {
  max-height: 500px;
  padding: 1.5rem 2rem 2rem 2rem;
}

.staffing-acc-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wc-muted);
  margin: 0;
}

/* Acordeón Recruiting */
.recruiting-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.recruiting-acc-item {
  background: #fff;
  border-bottom: 1px solid rgba(195, 223, 244, 0.5);
  transition: all 0.3s ease;
}

.recruiting-acc-item:first-child {
  border-top: 4px solid var(--wc-secondary);
}

.recruiting-acc-item:last-child {
  border-bottom: none;
}

.recruiting-acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
}

.recruiting-acc-header:hover {
  background: rgba(195, 223, 244, 0.2);
}

.recruiting-acc-item.active .recruiting-acc-header {
  background: rgba(195, 223, 244, 0.3);
}

.recruiting-acc-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--wc-primary);
  margin: 0;
  transition: color 0.3s ease;
}

.recruiting-acc-header:hover .recruiting-acc-title {
  color: var(--wc-secondary);
}

.recruiting-acc-toggle {
  font-size: 1.25rem;
  color: var(--wc-secondary);
  transition: transform 0.3s ease;
}

.recruiting-acc-item.active .recruiting-acc-toggle {
  transform: rotate(180deg);
}

.recruiting-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
  background: rgba(195, 223, 244, 0.1);
}

.recruiting-acc-item.active .recruiting-acc-body {
  max-height: 500px;
  padding: 1.5rem 2rem 2rem 2rem;
}

.recruiting-acc-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wc-muted);
  margin: 0;
}

/* Tarjetas de Valores */
.valor-card {
  background: #fff;
  padding: 2rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 181, 184, 0.15);
  transition: all 0.3s ease;
}

.valor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--wc-accent);
}

.valor-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--wc-primary) 0%, var(--wc-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.valor-card:hover .valor-icon {
  transform: scale(1.1);
}

.valor-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.valor-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wc-primary);
  margin-bottom: 0.75rem;
}

.valor-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--wc-muted);
  margin: 0;
}

.cultura-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wc-primary);
  line-height: 1.3;
}

.resultados-container {
  background: linear-gradient(90deg, var(--wc-primary) 0%, var(--wc-accent) 100%);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}

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

@media (max-width: 576px) {
  .resultados-container {
    grid-template-columns: 1fr;
  }
}

.resultado-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: transparent;
  transition: all 0.3s ease;
  min-height: 100%;
}

.resultado-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.resultado-numero {
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resultado-item:hover .resultado-numero {
  color: #fff;
  transform: scale(1.1);
}

.resultado-texto {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: flex-start;
  flex: 1;
}

.section-heading2 {
  font-size: 1.7rem;
}

.section-subtitle {
  color: var(--wc-muted);
  max-width: 600px;
}

.text-primary {
  color: var(--wc-primary) !important;
}

.wc-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(5, 43, 58, 0.08);
  padding: 0px 0;
  z-index: 1030;
  transition: padding 0.3s ease;
}

.wc-navbar .navbar-brand {
  font-weight: 700;
  color: var(--wc-dark);
}

.wc-navbar .nav-link {
  font-weight: 500;
  color: var(--wc-dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  position: relative;
}

.wc-navbar .nav-link.active,
.wc-navbar .nav-link.active-parent,
.wc-navbar .nav-link:hover {
  color: var(--wc-accent);
}

.wc-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.wc-navbar .nav-link.active-parent::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.15rem;
  height: 1px;
  background: currentColor;
  border-radius: 999px;
}

.wc-navbar .dropdown {
  position: relative;
}

.wc-navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 3rem);
  left: 0;
  min-width: 14rem;
  padding: 0.5rem 0;
  margin: 0;
  border: unset;
  border-radius: unset;
  background: #fff;
  box-shadow: 0 18px 38px rgba(5, 43, 58, 0.18);
  z-index: 1040;
}

.wc-navbar .dropdown-menu.show {
  display: block;
}

.wc-navbar .dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--wc-dark);
}

.wc-navbar .dropdown-item.active,
.wc-navbar .dropdown-item:hover {
  background: rgba(0, 109, 155, 0.08);
  color: var(--wc-primary);
}

.wc-navbar .dropend .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.125rem;
}

/* Hover para mostrar submenú de Consultoría en escritorio */
@media (min-width: 1200px) {
  .wc-navbar .dropend:hover>.dropdown-menu {
    display: block;
  }
}

.wc-navbar .dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: 0.1em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.wc-brand-mark {
  background: var(--wc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-wave {
  background: #154f81;
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 60vh;
  max-height: 70vh;
}

.hero-wave .shape {
  position: absolute;
}

.hero-wave .shape.shape-2 {
  background-image: url("../assets/images/g2259.png");
  background-size: cover;
  width: 65%;
  height: 100%;
  bottom: 0px;
  left: -60px;
}

.hero-wave img.hero-visual {
  width: 100%;
  max-width: 420px;
  border-radius: var(--wc-radius);
  box-shadow: var(--wc-shadow);
}

.hero-wave .hero-visual-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: var(--wc-radius);
  box-shadow: var(--wc-shadow);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.hero-wave .hero-content {
  position: relative;
  z-index: 2;
}

.hero-wave .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-wave .hero-badge span {
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 999px;
  display: inline-block;
}

.hero-wave h1 {
  font-size: clamp(2.35rem, 2vw + 2rem, 3.5rem);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-wave p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.hero-font {
  font-size: 4.5rem;
  font-weight: 900;
  padding-left: 3rem;
  padding-bottom: 2rem;
}

.card {
  height: 100%;
}

.card-solution {
  background: #fff;
  border-radius: unset;
  border: 2px solid var(--wc-accent);
  box-shadow: var(--wc-shadow);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.card-solution h4 {
  font-weight: 700;
  color: var(--wc-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-solution h5 {
  font-weight: 700;
  color: var(--wc-primary);
}

.card-solution p {
  color: var(--wc-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-link {
  color: var(--wc-accent);
  display: inline-block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: var(--wc-primary);
  transform: translateX(4px);
}

.card-line {
  background-color: var(--wc-accent);
  width: 100%;
  height: 2px;
  margin: 1rem 0;
}

.card-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}

.card-badge img {
  width: 80px;
  margin: 0 auto;
}

.py-120 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.pt-120 {
  padding-top: 48px;
}

.pb-120 {
  padding-bottom: 48px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 24px;
}

.numbers-section {
  position: relative;
  background-color: #f8fbfd;
}

.numbers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../assets/images/g1643.png");
  opacity: 0.6;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

.numbers-section>.container {
  position: relative;
  z-index: 1;
}

.stat-card {
  padding: 2rem;
  text-align: center;
}

.stat-card h3 {
  font-weight: 800;
  color: var(--wc-primary);
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}

.stat-card p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.stat-border {
  position: relative;
}

.stat-border::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 60%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--wc-accent);
  left: 0;
}

.stat-border::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 60%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--wc-accent);
  right: 0;
}

.bg-lightblue {
  background-color: #c3dff4;
}

.client-carousel {
  background: #ffffff;
  border-radius: unset;
  box-shadow: var(--wc-shadow);
  padding: 3rem 2rem;
}

.client-slider .client-logo {
  display: grid;
  place-items: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wc-dark);
  opacity: 0.65;
}

.client-slider .client-logo img {
  width: 160px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.client-slider .client-logo:hover img {
  transform: scale(1.05);
}

.client-slider .client-logo span {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  border: 2px solid rgba(5, 43, 58, 0.12);
}

.client-slider {
  .slick-dots {
    position: relative;
    bottom: -40px;

    li {
      border-radius: 999px;
      background-color: var(--wc-accent);
      opacity: 0.65;
    }
  }

  li.slick-active {
    background-color: var(--wc-accent);
    opacity: 1;
  }

  li button:before,
  li button:after {
    color: transparent;
  }
}

.testimonial-slider {
  .slick-dots {
    position: relative;
    bottom: 20px;

    li {
      border-radius: 999px;
      background-color: var(--wc-accent);
      opacity: 0.65;
    }
  }

  li.slick-active {
    background-color: var(--wc-accent);
    opacity: 1;
  }

  li button:before,
  li button:after {
    color: transparent;
  }
}

.section-uppertitle {
  font-weight: 600;
  color: var(--wc-accent);
}

.testimonial-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: var(--wc-shadow);
}

.testimonial-card {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.testimonial-card>p {
  color: var(--wc-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-logo {
  width: 80px;
  background-color: #fff;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 15px;
  border: 2px solid var(--wc-primary);
}

.testimonial-signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);

  .signature {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;

    p {
      margin: 0;
      line-height: 1.4;
    }

    .name {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--wc-primary);
    }

    .cargo {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--wc-muted);
    }

    .empresa {
      font-weight: 500;
      font-size: 0.9rem;
      color: var(--wc-dark);
      font-style: italic;
    }
  }
}

.testimonial-card .name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--wc-primary);
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section form {
  padding: 2rem;
}

.form-control,
.form-select {
  border-radius: 16px;
  border: 1px solid rgba(5, 43, 58, 0.1);
  padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--wc-accent);
  box-shadow: 0 0 0 0.2rem rgba(0, 181, 184, 0.15);
}

.form-control,
.form-select {
  border-radius: unset;
  background-color: #eeeeee;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wc-primary);
  position: relative;
  padding-left: 1.5rem;
}

.contact-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--wc-accent);
}

.wc-footer {
  border-top: 5px solid var(--wc-accent);
  background: var(--wc-primary);
  position: relative;
}

.footer-logo {
  max-width: 180px;
  height: auto;
}

.footer-cta-text {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-cta-link {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-bottom: 2px solid var(--wc-accent);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.footer-cta-link:hover {
  color: var(--wc-accent);
  border-bottom-color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--wc-accent);
}

.footer-contact-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--wc-accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav-link:hover {
  color: var(--wc-accent);
  padding-left: 8px;
}

.footer-nav-link:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--wc-accent);
  border-radius: 50%;
}

.wc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 35, 48, 0.5);
}

.footer-copyright {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: var(--wc-accent);
}

/* ---- whatsapp ----*/
@keyframes whatsapp_animation {
  0% {
    opacity: 0;
    right: 0;
    bottom: 4%;
  }

  100% {
    opacity: 1;
    right: 4%;
    bottom: 4%;
  }
}

@keyframes whatsapp_rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.w-flotante {
  opacity: 0;
  background-color: green;
  width: 4rem;
  height: 4rem;
  position: fixed;
  bottom: 4%;
  right: 4%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation-name: whatsapp_animation;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-fill-mode: forwards;

  &:hover {
    background-color: #2879ff;
  }

  .whatsapp {
    color: white;
    font-size: 2.5rem;
    animation-name: whatsapp_rotation;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
  }
}

.pattern-ribbon {
  background-image: url("../assets/patterns/ribbon.svg");
  background-size: 520px;
  background-repeat: repeat;
}

.bg-gradient-light {
  background: linear-gradient(180deg, rgba(245, 251, 255, 0) 0%, #f5fbff 100%);
}

.accordion-button {
  background-color: var(--wc-accent);
  color: #fff;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: var(--wc-accent);
  color: #fff;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  background-color: transparent !important;
  border: none;
  border-radius: unset !important;
  box-shadow: var(--wc-shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-body {
  color: var(--wc-muted);
  margin-top: 15px;
  border: 1px solid #000;
  background-color: #fff;
}

.my-120 {
  margin: 120px 0;
}

.page-banner {
  position: relative;
  background: var(--wc-gradient);
  color: #fff;
  padding: 50px 0 20px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
}

.banner-content-bottom {
  padding-bottom: 1rem;
}

.practice-image-wrapper {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(195, 223, 244, 0.3) 0%, rgba(185, 227, 226, 0.2) 100%);
  border-radius: 8px;
}

.practice-image {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.practice-image-wrapper::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: url('../assets/images/circulo-detalle.png') no-repeat center center;
  background-size: contain;
  opacity: 0.6;
  z-index: 0;
}

.practice-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 100px;
  height: 100px;
  background: url('../assets/images/circulo-detalle.png') no-repeat center center;
  background-size: contain;
  opacity: 0.4;
  z-index: 0;
  transform: rotate(180deg);
}

.section-title-accent {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wc-primary);
  position: relative;
  display: inline-block;
}

/* Línea de títulos removida por solicitud del cliente */
/*
.section-title-accent::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--wc-accent);
}
*/

.staffing-intro {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--wc-dark);
}

/* Secciones con tramas de fondo */
.section-dots-pattern {
  position: relative;
  background-color: #f8fbfd;
}

.section-dots-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/images/g5619.png') no-repeat right center;
  background-size: auto 100%;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.section-dots-pattern>.container {
  position: relative;
  z-index: 1;
}

.section-wave-pattern {
  position: relative;
  background-color: #f0f7fa;
}

.section-wave-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/patterns/wave.svg') repeat-x bottom;
  background-size: 100% 80px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.section-wave-pattern>.container {
  position: relative;
  z-index: 1;
}

.section-ribbon-pattern {
  position: relative;
  background-color: #f5f9fc;
}

.section-ribbon-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: url('../assets/patterns/ribbon.svg') no-repeat right top;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.section-ribbon-pattern>.container {
  position: relative;
  z-index: 1;
}

/* Texto introductorio de pilares */
.pilar-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--wc-dark);
  font-weight: 400;
}

/* Responsive para imagen del banner del index */
@media (max-width: 1500px) {
  .hero-wave img {
    height: 450px !important;
  }
}

@media (max-width: 1200px) {
  .hero-wave img {
    height: 430px !important;
  }
}

@media (max-width: 1000px) {
  .hero-wave img {
    height: 380px !important;
  }
}

@media (max-width: 800px) {
  .hero-wave img {
    height: 330px !important;
    margin-top: -30px !important;
  }
}

@media (max-width: 768px) {
  .hero-wave img {
    height: auto !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    object-position: center center !important;
  }
}

.continuity-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.continuity-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--wc-primary), var(--wc-accent));
}

.continuity-arrow i {
  font-size: 1.5rem;
  color: var(--wc-accent);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(8px);
  }

  60% {
    transform: translateY(4px);
  }
}

.banner-subtitle {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.banner-title {
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
}

.page-banner.has-image {
  background: rgba(0, 0, 0, 0.35);
  background-size: cover;
  background-position: center;
}

.page-banner.banner-consultoria {
  background-position: 50% 62%;
}

.page-banner.banner-staffing {
  background-position: 50% 50%;
}

.page-banner.banner-recruiting {
  background-position: 50% 50%;
}

.page-banner.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 79, 129, 0.8);
  z-index: 1;
}

.page-banner h1 {
  font-weight: 900;
  font-size: clamp(2.25rem, 2vw + 1.7rem, 3rem);
  position: relative;
  color: #fff;
  z-index: 10;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--wc-radius);
  padding: 2rem;
  box-shadow: var(--wc-shadow);
}

.value-grid .value-card {
  background: #fff;
  border-radius: var(--wc-radius);
  padding: 2rem;
  box-shadow: var(--wc-shadow);
  min-height: 180px;
}

.process-step {
  background: #fff;
  border-radius: var(--wc-radius);
  padding: 1.75rem;
  box-shadow: var(--wc-shadow);
  text-align: center;
}

.process-step .step-index {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 109, 155, 0.1);
  color: var(--wc-primary);
  display: grid;
  place-items: center;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.bg-primary {
  background-color: var(--wc-primary) !important;
}

.bg-primary-transparent {
  background-color: rgba(21, 79, 129, 0.8);
}

.bg-accent-transparent {
  background-color: rgba(66, 161, 165, 0.8);
}

.text-accent {
  color: var(--wc-accent);
}

.card-outline {
  border-radius: var(--wc-radius);
  border: 2px solid rgba(5, 43, 58, 0.06);
  padding: 1.5rem;
  transition: transform 0.25s ease;
}

.card-outline:hover {
  transform: translateY(-6px);
}

/* .wave-divider {
  width: 100%;
  height: 80px;
  background: url("../assets/patterns/wave.svg") center top / cover no-repeat;
  margin: -40px 0 0;
} */

.page-section {
  padding: 3.5rem 0;
}

.feature-card {
  background: #fff;
  border-radius: var(--wc-radius);
  box-shadow: var(--wc-shadow);
  padding: 2rem;
  height: 100%;
}

.feature-card h5 {
  font-weight: 600;
  color: var(--wc-dark);
}

.feature-card p {
  color: var(--wc-muted);
  margin-bottom: 0;
}

.highlighted-strip {
  background: rgba(0, 109, 155, 0.12);
  border-radius: var(--wc-radius);
  padding: 2rem;
  box-shadow: var(--wc-shadow);
}

.value-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-grid .value-card {
  text-align: center;
}

.value-card {
  padding: 40px 30px;
  min-height: 180px;
  margin: auto;
}

.value-card h5 {
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: #fff;
  margin-bottom: 0;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.process-flow .process-step {
  min-width: 160px;
  max-width: 220px;
}

.benefit-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.benefit-card {
  background: rgba(5, 43, 58, 0.92);
  color: #fff;
  border-radius: var(--wc-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--wc-shadow);
  height: 100%;
}

.benefit-card h5 {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.accordion-flush .accordion-item {
  box-shadow: var(--wc-shadow);
  border-radius: unset !important;
  overflow: hidden;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.profiles-grid .profile-card {
  background: #fff;
  border-radius: var(--wc-radius);
  padding: 1.75rem;
  box-shadow: var(--wc-shadow);
  text-align: center;
}

.ribbon-banner {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--wc-radius);
  box-shadow: var(--wc-shadow);
  padding: 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.ribbon-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/patterns/ribbon.svg") center / cover repeat;
  opacity: 0.1;
}

.ribbon-banner>* {
  position: relative;
  z-index: 2;
}

.border-primary {
  border-color: var(--wc-primary) !important;
}

.timeline {
  display: grid;
  gap: 1.5rem;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border-radius: var(--wc-radius);
  padding: 1.5rem;
  box-shadow: var(--wc-shadow);
}

.timeline-step .timeline-index {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 109, 155, 0.16);
  color: var(--wc-primary);
  font-weight: 600;
}

.timeline-step h5 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--wc-muted);
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wc-accent);
  font-weight: 600;
}

.bg-soft-primary {
  background: rgba(0, 109, 155, 0.08);
}

.bg-soft-secondary {
  background: rgba(30, 136, 168, 0.08);
}

.bg-soft-accent {
  background: rgba(0, 181, 184, 0.08);
}

.link-chevron {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.link-chevron::after {
  content: "→";
  transition: transform 0.2s ease;
}

.link-chevron:hover::after {
  transform: translateX(4px);
}

.sticky-cta {
  background: var(--wc-primary);
  color: #fff;
  border-radius: var(--wc-radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--wc-shadow);
}

.sticky-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

.cta-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.cta-actions .btn-outline-light:hover {
  background: #fff;
  color: var(--wc-primary);
}

.pilar-cta-section {
  padding: 80px 0;
}

.pilar-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.pilar-cta-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.btn-pilar-cta {
  background: #fff;
  color: var(--wc-primary);
  border: none;
  border-radius: 999px;
  padding: 0.75rem 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.btn-pilar-cta:hover {
  background: var(--wc-accent-light);
  color: var(--wc-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.float-image {
  position: absolute;

  &.image1 {
    top: 20%;
    left: -30px;

    img {
      width: 200px;
    }
  }

  &.image2 {
    bottom: -40px;
    right: 0;

    img {
      width: 150px;
    }
  }

  &.image3 {
    bottom: -100px;
    right: -80px;
    z-index: 0;

    img {
      width: 150px;
    }
  }

  &.image4 {
    top: 20%;
    left: 150px;

    img {
      width: 250px;
    }
  }

  &.image5 {
    top: 20%;
    right: 0;

    img {
      width: 700px;
      margin: 0;
    }
  }

  &.image6 {
    top: 20%;
    right: -100px;

    img {
      width: 300px;
      margin: 0;
    }
  }

  &.image7 {
    top: 20%;
    left: 0;

    img {
      width: 200px;
      margin: 0;
    }
  }

  &.image8 {
    top: 30%;
    right: 0;

    img {
      width: 800px;
      margin: 0;
    }
  }

  &.image9 {
    bottom: 10%;
    right: 0;

    img {
      margin: 0;
    }
  }
}

.client-slider {

  .slick-next,
  .slick-prev {
    background-color: var(--wc-accent);
    border-radius: 999px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slick-prev:before {
    content: "‹";
    position: relative;
    top: -2px;
  }

  .slick-next::before {
    content: "›";
    position: relative;
    top: -2px;
  }
}

@media (max-width: 991.98px) {
  .hero-wave {
    border-radius: 0 0 40px 40px;
  }

  .card-solution,
  .stat-card,
  .contact-section {
    margin-bottom: 1.5rem;
  }
}

/* ========================================
   NAVBAR MOBILE REDESIGN (xl breakpoint)
   ======================================== */
@media (max-width: 1199.98px) {
  body {
    padding-top: 60px;
  }

  .wc-navbar {
    padding: 0.5rem 0;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  .wc-navbar .navbar-brand img {
    max-height: 50px;
  }

  /* Hamburger Button - Gradient with animation */
  .wc-navbar .navbar-toggler {
    border: none !important;
    padding: 0;
    background: linear-gradient(135deg, var(--wc-primary) 0%, var(--wc-accent) 100%) !important;
    border-radius: 10px !important;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 109, 155, 0.25);
    transition: all 0.3s ease;
  }

  .wc-navbar .navbar-toggler:hover,
  .wc-navbar .navbar-toggler:focus {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 109, 155, 0.35);
    outline: none !important;
  }

  .wc-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 26px;
    height: 26px;
  }

  /* Mobile Menu Container - Transparent Background */
  .wc-navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: transparent;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 1050;
    display: none;
    justify-content: flex-end;
    padding-right: 1rem;
  }

  .wc-navbar .navbar-collapse.show {
    display: flex;
  }

  .wc-navbar .navbar-nav {
    padding: 1rem;
    gap: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 247, 251, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 109, 155, 0.15);
    width: auto;
    min-width: 280px;
    max-width: 400px;
  }

  .wc-navbar .nav-item {
    padding: 0 !important;
    margin: 0;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInFromRight 0.4s ease forwards;
  }

  .wc-navbar .nav-item:nth-child(1) {
    animation-delay: 0.05s;
  }

  .wc-navbar .nav-item:nth-child(2) {
    animation-delay: 0.1s;
  }

  .wc-navbar .nav-item:nth-child(3) {
    animation-delay: 0.15s;
  }

  .wc-navbar .nav-item:nth-child(4) {
    animation-delay: 0.2s;
  }

  .wc-navbar .nav-item:nth-child(5) {
    animation-delay: 0.25s;
  }

  .wc-navbar .nav-item:nth-child(6) {
    animation-delay: 0.3s;
  }

  @keyframes slideInFromRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Nav Links - Card Style */
  .wc-navbar .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    padding: 1.25rem 1.5rem !important;
    margin: 0.35rem 0;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--wc-primary) !important;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 109, 155, 0.08);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .wc-navbar .nav-link:hover {
    background: linear-gradient(90deg, rgba(0, 109, 155, 0.05) 0%, rgba(0, 168, 168, 0.03) 100%);
    border-left-color: var(--wc-accent);
    padding-left: 2rem !important;
    color: var(--wc-accent) !important;
  }

  .wc-navbar .nav-link.active,
  .wc-navbar .nav-link.active-parent {
    background: linear-gradient(90deg, var(--wc-primary) 0%, var(--wc-accent) 100%) !important;
    color: #fff !important;
    border-left-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 109, 155, 0.3);
  }

  .wc-navbar .nav-link.active::after,
  .wc-navbar .nav-link.active-parent::after {
    display: none !important;
  }

  /* Dropdown Toggle Arrow */
  .wc-navbar .nav-link.dropdown-toggle::after {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }

  /* Dropdown Menu - Nested Style */
  .wc-navbar .dropdown-menu {
    position: static !important;
    display: none;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0.5rem 0 0.5rem 1.5rem !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .wc-navbar .dropdown-menu.show {
    display: block;
  }

  .wc-navbar .dropdown-item {
    padding: 1rem 1.25rem !important;
    margin: 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--wc-dark);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 3px solid var(--wc-accent);
    transition: all 0.25s ease;
  }

  .wc-navbar .dropdown-item:hover,
  .wc-navbar .dropdown-item.active {
    background: var(--wc-accent);
    color: #fff;
    padding-left: 1.75rem !important;
  }

  /* Nested Dropend Menu */
  .wc-navbar .dropend .dropdown-menu {
    padding-left: 2rem !important;
    border-left: 2px dashed var(--wc-primary);
  }

  .wc-navbar .dropend .dropdown-item {
    font-size: 0.95rem;
    padding: 0.85rem 1rem !important;
    border-left-color: var(--wc-primary);
  }

  /* Divider */
  .wc-navbar .dropdown-divider {
    border-color: rgba(0, 109, 155, 0.15);
    margin: 0.5rem 1rem;
  }

  /* Bottom decoration */
  .wc-navbar .navbar-nav::after {
    content: "";
    display: block;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 109, 155, 0.1);
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .hero-wave {
    text-align: center;
  }

  .hero-wave img.hero-visual {
    margin: 2rem auto 0;
  }

  .contact-section form {
    margin-top: 2rem;
  }
}

/* Responsive a 900px - secciones texto + imagen a vertical */
@media (max-width: 900px) {

  .row.align-items-center>[class*="col-lg-5"],
  .row.align-items-center>[class*="col-lg-6"],
  .row.gy-4>[class*="col-lg-5"],
  .row.gy-4>[class*="col-lg-6"] {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .row.align-items-center>[class*="offset-lg"],
  .row.gy-4>[class*="offset-lg"] {
    margin-left: 0;
  }

  #sobre-nosotros .row {
    flex-direction: column;
  }

  #sobre-nosotros .col-lg-6 {
    order: -1;
    margin-bottom: 2rem;
  }

  #sobre-nosotros .col-lg-6 img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
  }

  .hero-wave .row {
    flex-direction: column;
  }

  .hero-wave .col-lg-6:last-child {
    order: -1;
    margin-bottom: 2rem;
  }

  .contact-section .row {
    flex-direction: column;
  }

  .contact-section [class*="col-lg"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}