:root {
  --cosj-primary: #203c73;
  --cosj-primary-deep: #162a52;
  --cosj-accent: #18c0dc;
  --cosj-accent-soft: #e7f9ff;
  --cosj-surface: #ffffff;
  --cosj-surface-soft: #f5f8fc;
  --cosj-border: rgba(32, 60, 115, 0.12);
  --cosj-text: #1b2f57;
  --cosj-muted: #647993;
  --cosj-shadow-lg: 0 24px 56px rgba(16, 34, 66, 0.14);
  --cosj-shadow-md: 0 18px 36px rgba(16, 34, 66, 0.1);
  --cosj-shadow-sm: 0 12px 24px rgba(16, 34, 66, 0.08);
  --cosj-radius-xl: 30px;
  --cosj-radius-lg: 24px;
  --cosj-radius-md: 18px;
  --cosj-radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

body.cosj-home {
  background:
    radial-gradient(circle at top left, rgba(24, 192, 220, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(32, 60, 115, 0.08), transparent 30%),
    #f6f9fc;
  color: var(--cosj-text);
  overflow-x: hidden;
}

body.cosj-home section[id] {
  scroll-margin-top: 98px;
}

body.cosj-home .wrapper {
  background: transparent;
}

body.cosj-home .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 9px 28px;
  background: linear-gradient(90deg, #203c73 0%, #2a4a87 55%, #203c73 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.cosj-home .top-bar .block-left,
body.cosj-home .top-bar .block-right {
  width: auto;
}

body.cosj-home .top-bar .headline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.cosj-home .top-bar .headline svg {
  flex: 0 0 auto;
}

body.cosj-home .top-bar .headline .shp0 {
  fill: rgba(255, 255, 255, 0.85);
}

body.cosj-home .top-bar .top-Contacto {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 24px;
  flex-wrap: wrap;
}

body.cosj-home .top-bar .Contacto-infos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.cosj-home .top-bar .Contacto-infos i,
body.cosj-home .top-bar .Contacto-body a,
body.cosj-home .top-bar .Contacto-body p {
  color: rgba(255, 255, 255, 0.92);
}

body.cosj-home .top-bar .Contacto-body a,
body.cosj-home .top-bar .Contacto-body p {
  font-size: 14px;
  font-weight: 600;
}

body.cosj-home #primary-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(32, 60, 115, 0.08);
  box-shadow: 0 12px 34px rgba(16, 34, 66, 0.08);
  backdrop-filter: blur(12px);
}

body.cosj-home .navbar-sticky.navbar-fixed {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 36px rgba(16, 34, 66, 0.1);
}

.cosj-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: 22px;
}

body.cosj-home .header .navbar .navbar-brand.cosj-brand {
  height: auto;
  line-height: normal;
}

.cosj-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 6px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(32, 60, 115, 0.08), rgba(24, 192, 220, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.cosj-brand__mark img {
  display: block;
  width: 100%;
  height: auto;
}

.cosj-brand__type {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.cosj-brand__title,
.cosj-brand__subtitle {
  display: block;
  color: var(--cosj-primary);
  white-space: nowrap;
}

.cosj-brand__title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cosj-brand__subtitle {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

body.cosj-home #primary-menu .navbar-collapse {
  align-items: center;
}

body.cosj-home .navbar-nav {
  align-items: center;
  gap: 6px;
}

body.cosj-home .navbar-nav .nav-item > a {
  position: relative;
  padding: 32px 10px;
  color: var(--cosj-text);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

body.cosj-home .navbar-nav .nav-item > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cosj-primary), var(--cosj-accent));
  transform: translateX(-50%);
  transition: width 0.24s ease;
}

body.cosj-home .navbar-nav .nav-item:hover > a::after,
body.cosj-home .navbar-nav .nav-item > a:hover::after,
body.cosj-home .navbar-nav .nav-item.active > a::after {
  width: 30px;
}

body.cosj-home .navbar-toggler {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(32, 60, 115, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(16, 34, 66, 0.08);
}

body.cosj-home .module-holder,
body.cosj-home .module-holder-phone {
  display: flex;
  align-items: center;
}

body.cosj-home .module-holder-phone {
  margin-left: auto;
}

body.cosj-home .module-holder.module-holder-phone {
  height: auto !important;
  padding: 0 !important;
  margin-top: 0 !important;
}

body.cosj-home .module-Contacto .btn {
  min-height: 58px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cosj-primary), var(--cosj-accent));
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 28px rgba(16, 34, 66, 0.12);
}

.cosj-home #slider-2 {
  margin-top: 0 !important;
}

.cosj-home .slider-2 .slide {
  min-height: 620px;
}

.cosj-home .slider-2 .slide-content {
  min-height: 620px;
  padding: 54px 0 96px;
}

.cosj-home .slider-2 .slide-headline {
  max-width: 10.5ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 4.15vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.cosj-hero-copy {
  display: inline-flex;
  max-width: 620px;
  padding: 18px 20px 20px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(9, 18, 38, 0.66), rgba(27, 46, 87, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.cosj-benefits-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 132px));
  justify-content: flex-start;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin-top: 20px;
}

.cosj-benefit-card {
  padding: 8px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.cosj-benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 192, 220, 0.44);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.16);
}

.cosj-benefit-img {
  overflow: hidden;
  border-radius: 16px;
}

.cosj-benefit-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
}

.cosj-benefit-title {
  margin-top: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
}

.cosj-slide-card {
  max-width: 600px;
  padding: 20px 22px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(11, 20, 40, 0.68), rgba(29, 49, 92, 0.44));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.cosj-slide-card__intro,
.cosj-slide-card__address {
  font-size: 16px;
}

.cosj-slide-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 16px 0;
}

.cosj-slide-card__item {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.36;
  text-transform: uppercase;
}

.cosj-slide-card__note {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.cosj-slide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 580px;
  margin-top: 24px;
}

.cosj-slide-list .icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 140px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.cosj-slide-list .icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--cosj-primary);
  font-size: 28px;
}

.cosj-slide-list .icon p {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.28;
}

body.cosj-home .slider-carousel .owl-nav button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

body.cosj-home .slider-carousel .owl-nav button:hover {
  background: rgba(24, 192, 220, 0.24);
}

.cosj-home .features-bar {
  position: relative;
  z-index: 4;
  margin-top: -26px;
}

.cosj-home .features-holder {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--cosj-shadow-lg);
}

.cosj-home .feature-panel {
  min-height: 182px;
}

.cosj-home .feature-panel .feature-content h5 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.18;
}

.cosj-home .feature-content p,
.cosj-home .feature-content li,
.cosj-home .feature-panel .feature-content span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.68;
}

.cosj-home .feature-panel .feature-content > a,
.cosj-home .feature-panel .feature-content li span:last-child {
  font-size: 16px;
  font-weight: 700;
}

.cosj-home .feature-panel .btn {
  border-radius: 14px;
}

.cosj-home .testimonial-2 {
  padding-top: 112px;
}

.cosj-home .testimonial-2 .clients-img img {
  box-shadow: var(--cosj-shadow-lg);
}

.cosj-home .testimonial-panel {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--cosj-shadow-md);
}

.cosj-home .heading-title,
.cosj-home h2.heading-title {
  max-width: 100%;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
  white-space: normal;
}

.Departamentos-2 .heading-title,
#donations-3 .heading-title {
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.cosj-switcher {
  margin-top: 30px;
}

.cosj-toggle-btn {
  min-width: 280px;
  border-radius: 999px;
  box-shadow: 0 16px 26px rgba(16, 34, 66, 0.1);
}

.cosj-panel-inner {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--cosj-shadow-md);
}

#teamCarousel-1 {
  position: relative;
  padding: 86px 0 42px;
}

#teamCarousel-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(24, 192, 220, 0.08), transparent 26%),
    radial-gradient(circle at left bottom, rgba(32, 60, 115, 0.08), transparent 32%);
  pointer-events: none;
}

.cosj-team-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin: 26px 0 34px;
}

.cosj-team-feature,
.cosj-team-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(32, 60, 115, 0.08);
  box-shadow: var(--cosj-shadow-md);
}

.cosj-team-feature {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  min-height: 206px;
}

.cosj-team-feature__media,
.cosj-team-card__media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #dbe6f6 0%, #eff5ff 100%);
}

.cosj-team-feature__media {
  min-height: 100%;
}

.cosj-team-feature__media img,
.cosj-team-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cosj-team-feature__media--fallback,
.cosj-team-card__media--fallback {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(24, 192, 220, 0.32), transparent 28%),
    linear-gradient(145deg, #203c73 0%, #162a52 55%, #0d1a34 100%);
}

.cosj-team-feature__body,
.cosj-team-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.cosj-team-card__stamp {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cosj-team-card__initials {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.cosj-team-card__shine {
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
}

.cosj-team-card__role {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: #edf4ff;
  color: #4b638c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cosj-team-feature__name,
.cosj-team-card__name {
  margin: 0;
  color: var(--cosj-text);
  line-height: 1.18;
}

.cosj-team-feature__name {
  font-size: 28px;
}

.cosj-team-card__name {
  font-size: 20px;
}

.cosj-team-feature__desc,
.cosj-team-card__desc {
  margin: 0;
  color: var(--cosj-muted);
  line-height: 1.68;
}

.cosj-team-feature__desc {
  font-size: 15px;
}

.cosj-team-card__desc {
  font-size: 14px;
}

.cosj-team-carousel .owl-stage {
  display: flex;
}

.cosj-team-carousel .owl-item {
  display: flex;
  height: auto;
}

.cosj-team-slide {
  width: 100%;
  height: 100%;
  padding-bottom: 8px;
}

.cosj-team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.cosj-team-card:hover,
.cosj-team-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--cosj-shadow-lg);
}

.cosj-team-card--compact .cosj-team-card__media {
  min-height: 220px;
}

.cosj-team-card--compact .cosj-team-card__body {
  padding: 18px 18px 20px;
}

.cosj-team-card--compact .cosj-team-card__desc {
  display: none;
}

.cosj-home .cosj-team-carousel .owl-nav {
  position: static;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.cosj-home .cosj-team-carousel .owl-nav button {
  position: static;
  width: 50px;
  height: 50px;
  margin-right: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--cosj-text);
  border: 1px solid rgba(32, 60, 115, 0.08);
  box-shadow: 0 12px 26px rgba(16, 34, 66, 0.08);
}

.cosj-home .cosj-team-carousel .owl-nav button:hover {
  background: var(--cosj-primary);
  color: #ffffff;
}

#donations-3 {
  position: relative;
  overflow: hidden;
}

#donations-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 20, 40, 0.22), rgba(32, 60, 115, 0.5));
}

#donations-3 .container,
#donations-3 .Contacto-panel,
#donations-3 .Contacto-card {
  position: relative;
  z-index: 1;
}

#donations-3 .Contacto-panel,
#donations-3 .Contacto-card {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--cosj-shadow-lg);
}

#donations-3 .Contacto-card {
  background: rgba(255, 255, 255, 0.98);
}

#donations-3 .form-control {
  border-radius: 16px;
  border-color: rgba(32, 60, 115, 0.12);
  box-shadow: none;
}

#donations-3 .form-control:focus {
  border-color: rgba(24, 192, 220, 0.7);
  box-shadow: 0 0 0 4px rgba(24, 192, 220, 0.12);
}

#donations-3 a,
#donations-3 p,
#donations-3 span {
  overflow-wrap: anywhere;
}

.cosj-suggestions {
  position: relative;
  padding: 36px 0 86px;
}

.cosj-suggestions__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(24, 192, 220, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
  border: 1px solid rgba(32, 60, 115, 0.08);
  box-shadow: var(--cosj-shadow-md);
}

.cosj-section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cosj-accent-soft);
  color: var(--cosj-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cosj-suggestions__title {
  margin: 16px 0 10px;
  color: var(--cosj-text);
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.cosj-suggestions__text {
  margin: 0;
  color: var(--cosj-muted);
  font-size: 15px;
  line-height: 1.75;
}

.cosj-suggestions__mail {
  display: inline-flex;
  margin-top: 16px;
  color: var(--cosj-primary);
  font-size: 16px;
  font-weight: 700;
  word-break: break-word;
}

.cosj-suggestion-form {
  display: grid;
  gap: 18px;
}

.cosj-suggestion-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cosj-suggestion-form__label {
  display: block;
  margin-bottom: 8px;
  color: var(--cosj-text);
  font-size: 13px;
  font-weight: 700;
}

.cosj-suggestion-form__field {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(32, 60, 115, 0.12);
  background: #ffffff;
  color: var(--cosj-text);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cosj-suggestion-form__field:focus {
  outline: none;
  border-color: rgba(24, 192, 220, 0.68);
  box-shadow: 0 0 0 4px rgba(24, 192, 220, 0.12);
}

.cosj-suggestion-form__field--textarea {
  min-height: 150px;
  resize: vertical;
}

.cosj-suggestion-form__button {
  width: fit-content;
  min-width: 220px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cosj-primary), var(--cosj-accent));
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 16px 28px rgba(16, 34, 66, 0.16);
}

.cosj-suggestion-form__result {
  min-height: 24px;
  color: var(--cosj-text);
  font-size: 14px;
  font-weight: 600;
}

.cosj-suggestion-form__result.is-success {
  color: #127a45;
}

.cosj-suggestion-form__result.is-error {
  color: #b43a3a;
}

.cosj-home .footer-bottom {
  padding: 26px 0 32px;
  background: linear-gradient(180deg, #243b70 0%, #203768 100%);
}

.cosj-home .footer-bottom .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255, 255, 255, 0.92);
}

.cosj-home .footer-bottom .social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.cosj-home .footer-bottom .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

#back-to-top {
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cosj-primary), var(--cosj-accent));
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(16, 34, 66, 0.22);
}

.cosj-wa-float {
  position: fixed;
  left: 24px;
  right: auto !important;
  bottom: 24px;
  z-index: 1080;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: auto !important;
  max-width: max-content;
  padding: 13px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f9f49;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 20px 34px rgba(16, 34, 66, 0.14);
}

.cosj-wa-float:hover {
  color: #0f9f49;
  transform: translateY(-2px);
}

.cosj-wa-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #12b153;
  color: #ffffff;
}

.cosj-wa-float__text {
  font-size: 15px;
  font-weight: 800;
}

.cosj-chatbot {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1090;
}

.cosj-chatbot__launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cosj-primary), var(--cosj-accent));
  color: #ffffff;
  box-shadow: 0 20px 38px rgba(16, 34, 66, 0.22);
}

.cosj-chatbot__launcher-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.cosj-chatbot__launcher-text {
  font-size: 16px;
  font-weight: 800;
}

.cosj-chatbot__panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: flex;
  flex-direction: column;
  width: min(380px, calc(100vw - 32px));
  max-height: min(72vh, 640px);
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(32, 60, 115, 0.1);
  box-shadow: 0 28px 70px rgba(16, 34, 66, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.97);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cosj-chatbot.is-open .cosj-chatbot__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.cosj-chatbot__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, var(--cosj-primary), #32589c 60%, var(--cosj-accent));
  color: #ffffff;
}

.cosj-chatbot__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.84;
}

.cosj-chatbot__title {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1;
}

.cosj-chatbot__header-actions {
  display: flex;
  gap: 8px;
}

.cosj-chatbot__icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.cosj-chatbot__messages {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  overflow: auto;
  background:
    radial-gradient(circle at top right, rgba(24, 192, 220, 0.08), transparent 22%),
    #f6f9ff;
}

.cosj-chatbot__message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: 0 12px 28px rgba(16, 34, 66, 0.08);
}

.cosj-chatbot__message--bot {
  background: #ffffff;
  color: var(--cosj-text);
  border-bottom-left-radius: 6px;
}

.cosj-chatbot__message--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--cosj-primary), #32589c);
  color: #ffffff;
  border-bottom-right-radius: 6px;
}

.cosj-chatbot__message a {
  color: inherit;
  text-decoration: underline;
}

.cosj-chatbot__typing {
  display: inline-flex;
  gap: 6px;
}

.cosj-chatbot__typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(32, 60, 115, 0.28);
  animation: cosj-chatbot-bounce 1s infinite ease-in-out;
}

.cosj-chatbot__typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.cosj-chatbot__typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.cosj-chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 14px;
  background: #f6f9ff;
}

.cosj-chatbot__message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.cosj-chatbot__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(32, 60, 115, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--cosj-text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.cosj-chatbot__form {
  display: flex;
  gap: 10px;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(32, 60, 115, 0.08);
  background: #ffffff;
}

.cosj-chatbot__input {
  flex: 1;
  min-width: 0;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid rgba(32, 60, 115, 0.12);
  border-radius: 16px;
  color: var(--cosj-text);
  font-size: 14px;
}

.cosj-chatbot__input:focus {
  outline: none;
  border-color: rgba(24, 192, 220, 0.72);
  box-shadow: 0 0 0 4px rgba(24, 192, 220, 0.1);
}

.cosj-chatbot__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cosj-primary), var(--cosj-accent));
  color: #ffffff;
}

.cosj-chatbot__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px 18px;
  background: #ffffff;
  color: #0f9f49;
  font-size: 13px;
  font-weight: 800;
}

.cosj-chatbot__footer:hover {
  color: #0f9f49;
}

@keyframes cosj-chatbot-bounce {
  0%,
  80%,
  100% {
    transform: scale(0.7);
    opacity: 0.45;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  body.cosj-home .header .navbar {
    padding: 0 18px;
  }

  body.cosj-home #primary-menu {
    min-height: 82px;
    padding: 14px 18px;
  }

  body.cosj-home #primary-menu .navbar-collapse {
    margin-top: 16px;
    padding: 18px 18px 20px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--cosj-shadow-md);
  }

  body.cosj-home .navbar-nav {
    align-items: flex-start;
    gap: 0;
  }

  body.cosj-home .navbar-nav .nav-item {
    width: 100%;
  }

  body.cosj-home .navbar-nav .nav-item > a {
    display: block;
    width: 100%;
    padding: 12px 0;
  }

  body.cosj-home .navbar-nav .nav-item > a::after {
    left: 0;
    bottom: 4px;
    transform: none;
  }

  body.cosj-home .module-holder {
    padding-top: 10px;
  }

  .cosj-home .slider-2 .slide-content {
    min-height: 580px;
    padding: 60px 0 84px;
  }

  .cosj-home .slider-2 .slide-headline {
    max-width: 10ch;
    font-size: clamp(2.35rem, 5.1vw, 3.8rem);
  }

  .cosj-benefits-wrap {
    grid-template-columns: repeat(4, minmax(0, 126px));
  }

  .cosj-home .features-bar {
    margin-top: -20px;
  }

  .cosj-suggestions__shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  body.cosj-home section[id] {
    scroll-margin-top: 84px;
  }

  body.cosj-home .top-bar {
    display: none;
  }

  .cosj-brand__mark {
    width: 52px;
    height: 52px;
  }

  .cosj-brand__title {
    font-size: 12px;
  }

  .cosj-brand__subtitle {
    font-size: 13px;
  }

  .cosj-home .slider-2 .slide {
    min-height: 560px;
  }

  .cosj-home .slider-2 .slide-content {
    min-height: 560px;
    padding: 56px 0 78px;
  }

  .cosj-home .slider-2 .slide-headline {
    max-width: 9ch;
    font-size: clamp(2.15rem, 7vw, 3.2rem);
  }

  .cosj-hero-copy {
    max-width: 360px;
    padding: 18px;
    border-radius: 24px;
  }

  .cosj-benefits-wrap {
    display: flex;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    margin-top: 18px;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
  }

  .cosj-benefit-card {
    flex: 0 0 132px;
    scroll-snap-align: start;
  }

  .cosj-slide-card {
    max-width: 420px;
    padding: 20px;
  }

  .cosj-slide-list {
    max-width: 380px;
  }

  .cosj-slide-list .icon {
    min-height: 124px;
    padding: 16px;
  }

  .cosj-home .features-bar {
    margin-top: 0;
    padding-top: 18px;
  }

  .cosj-home .features-holder {
    border-radius: 26px;
  }

  .cosj-home .feature-panel {
    min-height: auto;
  }

  .cosj-home .testimonial-2 {
    padding-top: 92px;
  }

  .cosj-team-spotlight {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 20px 0 28px;
  }

  .cosj-team-feature {
    grid-template-columns: 110px minmax(0, 1fr);
    min-height: 0;
  }

  .cosj-home .cosj-team-carousel .owl-nav {
    justify-content: center;
  }

  .cosj-suggestions {
    padding-bottom: 84px;
  }

  .cosj-suggestions__shell {
    padding: 24px 22px;
    border-radius: 28px;
  }

  .cosj-suggestion-form__button {
    width: 100%;
  }

  .cosj-home .footer-bottom .copyright {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  body.cosj-home .header .navbar {
    padding: 0 16px;
  }

  body.cosj-home #primary-menu {
    min-height: 78px;
    padding: 12px 16px;
  }

  .cosj-brand {
    gap: 10px;
    margin-right: 0;
    min-width: 0;
  }

  .cosj-brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .cosj-brand__type {
    display: none;
  }

  .cosj-home .slider-2 .slide {
    min-height: auto;
  }

  .cosj-home .slider-2 .slide-content {
    padding: 52px 0 68px;
  }

  .cosj-home .slider-2 .slide-headline {
    max-width: 7.5ch;
    font-size: clamp(2.05rem, 8.4vw, 2.9rem);
  }

  .cosj-hero-copy {
    max-width: min(84vw, 320px);
    padding: 16px 16px 18px;
  }

  .cosj-benefit-card {
    flex-basis: 124px;
  }

  .cosj-slide-card {
    max-width: min(88vw, 360px);
    padding: 18px;
  }

  .cosj-slide-card__grid {
    gap: 8px 12px;
  }

  .cosj-slide-card__item,
  .cosj-slide-card__note {
    font-size: 13px;
  }

  .cosj-slide-list,
  .cosj-suggestion-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cosj-slide-list {
    gap: 12px;
    max-width: min(88vw, 340px);
  }

  .cosj-slide-list .icon {
    min-height: 112px;
    padding: 14px;
    border-radius: 20px;
  }

  .cosj-slide-list .icon i {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .cosj-slide-list .icon p {
    font-size: 14px;
  }

  .Departamentos-2 .heading-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    line-height: 1.08;
  }

  .cosj-toggle-btn {
    min-width: 0;
    width: 100%;
  }

  .cosj-team-feature {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .cosj-team-feature__body,
  .cosj-team-card__body {
    padding: 18px;
  }

  .cosj-team-feature__name {
    font-size: 22px;
  }

  .cosj-team-card--compact .cosj-team-card__media {
    min-height: 190px;
  }

  .cosj-team-card__name {
    font-size: 18px;
  }

  .cosj-suggestions__shell {
    padding: 22px 18px;
  }

  #back-to-top {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .cosj-wa-float {
    left: 16px;
    bottom: 16px;
    padding: 10px 14px;
  }

  .cosj-chatbot {
    right: 16px;
    bottom: 84px;
  }

  .cosj-chatbot__launcher {
    padding: 10px;
  }

  .cosj-chatbot__launcher-text {
    display: none;
  }

  .cosj-chatbot__panel {
    bottom: 66px;
    width: min(360px, calc(100vw - 24px));
  }
}

@media (max-width: 575px) {
  .cosj-home .slider-2 .slide-content {
    padding: 48px 0 62px;
  }

  .cosj-home .slider-2 .slide-headline {
    max-width: 7ch;
    font-size: clamp(1.95rem, 8.8vw, 2.6rem);
  }

  .cosj-hero-copy {
    max-width: min(86vw, 296px);
  }

  .cosj-slide-card__grid,
  .cosj-slide-list,
  .cosj-suggestion-form__grid {
    grid-template-columns: 1fr;
  }

  .cosj-team-feature {
    grid-template-columns: 1fr;
  }

  .cosj-team-feature__media {
    min-height: 220px;
  }

  .cosj-wa-float__text {
    display: none;
  }

  .cosj-wa-float {
    padding: 10px;
  }

  .cosj-chatbot__panel {
    right: -4px;
    width: calc(100vw - 20px);
  }
}

/* // CAMBIO AQUÍ: ajuste final home slider, navbar, beneficios, pacientes, socio y cajas */

/* =========================
   NAVBAR BLANCO MÁS BAJO
   ========================= */

body.cosj-home .header.header-topbar {
  height: auto !important;
}

body.cosj-home #primary-menu,
body.cosj-home .header.header-topbar .navbar {
  min-height: 58px !important;
  height: 64px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.cosj-home .header.header-topbar .navbar .navbar-nav > li > a,
body.cosj-home #primary-menu .navbar-nav .nav-item > a {
  line-height: 64px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-size: 13px !important;
}

body.cosj-home .cosj-brand {
  gap: 10px !important;
  margin-right: 18px !important;
}

body.cosj-home .cosj-brand__mark {
  width: 44px !important;
  height: 44px !important;
  padding: 5px !important;
  border-radius: 13px !important;
}

body.cosj-home .cosj-brand__title {
  font-size: 12.5px !important;
  line-height: 1.05 !important;
}

body.cosj-home .cosj-brand__subtitle {
  font-size: 13px !important;
  line-height: 1.05 !important;
}

body.cosj-home .module-holder,
body.cosj-home .module-holder-phone {
  height: 64px !important;
  align-items: center !important;
}

body.cosj-home .module-Contacto .btn {
  min-width: 150px !important;
  width: auto !important;
  min-height: 48px !important;
  height: 48px !important;
  padding: 0 28px !important;
  border-radius: 999px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

/* =========================
   SLIDER BASE
   ========================= */

body.cosj-home #slider-2,
body.cosj-home #slider-2 .slider-carousel,
body.cosj-home #slider-2 .owl-stage-outer,
body.cosj-home #slider-2 .owl-stage,
body.cosj-home #slider-2 .owl-item,
body.cosj-home #slider-2 .slide {
  height: 590px !important;
  min-height: 590px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.cosj-home #slider-2 .slide {
  position: relative !important;
  background-size: cover !important;
  background-position: center 58% !important;
  background-repeat: no-repeat !important;
}

body.cosj-home #slider-2 .slide > .bg-section {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center 58% !important;
  background-repeat: no-repeat !important;
}

body.cosj-home #slider-2 .slide > .bg-section img {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 58% !important;
}

body.cosj-home #slider-2 .slide::before {
  z-index: 1 !important;
  pointer-events: none !important;
}

body.cosj-home #slider-2 .slide > .container {
  position: relative !important;
  z-index: 2 !important;
  height: 100% !important;
}

body.cosj-home #slider-2 .slide-content {
  height: 100% !important;
  min-height: 0 !important;
  padding: 54px 0 112px !important;
  display: flex !important;
  justify-content: flex-start !important;
}

body.cosj-home #slider-2 .slide-content .row {
  width: 100% !important;
  align-items: flex-start !important;
  align-content: flex-start !important;
}

/* =========================
   SACAR DOBLE FONDO NEGRO
   ========================= */

body.cosj-home #slider-2 .cosj-hero-copy,
body.cosj-home #slider-2 .cosj-slide-card {
  background: rgba(32, 60, 115, 0.66) !important;
  background-image: linear-gradient(135deg, rgba(32, 60, 115, 0.76), rgba(24, 192, 220, 0.24)) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 18px 42px rgba(12, 28, 60, 0.22) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

body.cosj-home #slider-2 .cosj-hero-copy::before,
body.cosj-home #slider-2 .cosj-hero-copy::after,
body.cosj-home #slider-2 .cosj-slide-card::before,
body.cosj-home #slider-2 .cosj-slide-card::after,
body.cosj-home #slider-2 .slide-headline::before,
body.cosj-home #slider-2 .slide-headline::after {
  display: none !important;
  content: none !important;
}

body.cosj-home #slider-2 .cosj-hero-copy .slide-headline,
body.cosj-home #slider-2 .cosj-slide-card .slide-headline {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}

/* =========================
   TEXTO HERO
   ========================= */

body.cosj-home #slider-2 .slide-headline {
  max-width: 100% !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(31px, 2.1vw, 42px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.22) !important;
}

body.cosj-home #slider-2 .cosj-hero-copy {
  width: 100% !important;
  max-width: 1060px !important;
  padding: 18px 30px !important;
  border-radius: 18px !important;
  margin: 0 auto !important;
}

/* =========================
   SLIDE 1 BENEFICIOS
   ========================= */

body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .slide-content .row {
  justify-content: center !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .slide-content .row > .col-12 {
  max-width: 1120px !important;
  flex: 0 0 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.cosj-home #slider-2 .cosj-benefits-wrap {
  display: grid !important;
  grid-template-columns: repeat(8, 118px) !important;
  justify-content: center !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 1120px !important;
  margin: 48px auto 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

body.cosj-home #slider-2 .cosj-benefit-card {
  width: 118px !important;
  min-height: 150px !important;
  padding: 9px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(32, 60, 115, 0.74), rgba(24, 192, 220, 0.32)) !important;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
  box-shadow: 0 16px 34px rgba(10, 24, 53, 0.24) !important;
  backdrop-filter: blur(9px) !important;
  -webkit-backdrop-filter: blur(9px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

body.cosj-home #slider-2 .cosj-benefit-img {
  height: 86px !important;
  padding: 6px !important;
  border-radius: 13px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.cosj-home #slider-2 .cosj-benefit-img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 8px !important;
}

body.cosj-home #slider-2 .cosj-benefit-title {
  margin: 9px 0 0 !important;
  min-height: 30px !important;
  color: #ffffff !important;
  font-size: 12.5px !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* =========================
   SLIDE BUSCAMOS PACIENTES
   ========================= */

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .slide-content {
  padding-top: 64px !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .slide-content .row {
  justify-content: center !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .slide-content .row > .col-12 {
  max-width: 920px !important;
  flex: 0 0 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.cosj-home #slider-2 .cosj-slide-card {
  width: 100% !important;
  max-width: 920px !important;
  padding: 26px 32px !important;
  border-radius: 20px !important;
  margin: 0 auto !important;
}

body.cosj-home #slider-2 .cosj-slide-card .slide-headline {
  max-width: 860px !important;
  font-size: clamp(31px, 2vw, 40px) !important;
  line-height: 1.02 !important;
  margin-bottom: 10px !important;
  text-align: left !important;
}

body.cosj-home #slider-2 .cosj-slide-card__intro,
body.cosj-home #slider-2 .cosj-slide-card__address {
  font-size: 14px !important;
  line-height: 1.3 !important;
}

body.cosj-home #slider-2 .cosj-slide-card__grid {
  gap: 8px 28px !important;
  margin: 18px 0 !important;
}

body.cosj-home #slider-2 .cosj-slide-card__item,
body.cosj-home #slider-2 .cosj-slide-card__note {
  font-size: 13px !important;
  line-height: 1.22 !important;
}

body.cosj-home #slider-2 .cosj-slide-card .btn {
  width: auto !important;
  min-width: 230px !important;
  height: 42px !important;
  padding: 0 22px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

/* =========================
   SLIDE SIENDO SOCIO / EQUIPAMIENTO
   ========================= */

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content {
  padding-top: 76px !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row {
  justify-content: center !important;
  text-align: center !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-12,
body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-lg-7,
body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-lg-6 {
  max-width: 920px !important;
  flex: 0 0 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

body.cosj-home #slider-2 .cosj-slide-list {
  display: grid !important;
  grid-template-columns: repeat(4, 126px) !important;
  justify-content: center !important;
  gap: 26px !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 46px auto 0 !important;
  padding: 0 !important;
}

body.cosj-home #slider-2 .cosj-slide-list .icon {
  width: 126px !important;
  min-height: 126px !important;
  padding: 14px 12px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(32, 60, 115, 0.72), rgba(24, 192, 220, 0.30)) !important;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
  box-shadow: 0 16px 34px rgba(10, 24, 53, 0.22) !important;
  backdrop-filter: blur(9px) !important;
  -webkit-backdrop-filter: blur(9px) !important;
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
}

body.cosj-home #slider-2 .cosj-slide-list .icon i {
  width: 52px !important;
  height: 52px !important;
  border-radius: 13px !important;
  background: #ffffff !important;
  color: #203c73 !important;
  font-size: 28px !important;
}

body.cosj-home #slider-2 .cosj-slide-list .icon p {
  margin: 10px 0 0 !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
}

/* =========================
   CAJAS URGENCIAS / HORARIOS
   ========================= */

body.cosj-home #featuresBar-1 {
  overflow: visible !important;
  padding: 0 0 52px !important;
  margin-top: 0 !important;
}

body.cosj-home #featuresBar-1 .features-holder {
  transform: translateY(-46px) !important;
  margin-bottom: -46px !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  box-shadow: 0 24px 56px rgba(16, 34, 66, 0.18) !important;
}

body.cosj-home #featuresBar-1 .features-holder > [class*="col-"] {
  display: flex !important;
}

body.cosj-home #featuresBar-1 .feature-panel {
  width: 100% !important;
  min-height: 218px !important;
  height: 100% !important;
  padding: 26px 26px !important;
}

body.cosj-home #featuresBar-1 .features-holder > [class*="col-"]:nth-child(1) .feature-panel {
  background: linear-gradient(135deg, #18c0dc 0%, #12aeca 100%) !important;
}

body.cosj-home #featuresBar-1 .features-holder > [class*="col-"]:nth-child(2) .feature-panel {
  background: linear-gradient(135deg, #3f63b2 0%, #3457a2 100%) !important;
}

body.cosj-home #featuresBar-1 .features-holder > [class*="col-"]:nth-child(3) .feature-panel {
  background: linear-gradient(135deg, #315394 0%, #284783 100%) !important;
}

body.cosj-home #featuresBar-1 .features-holder > [class*="col-"]:nth-child(4) .feature-panel {
  background: linear-gradient(135deg, #243f78 0%, #1c3568 100%) !important;
}

body.cosj-home #featuresBar-1 .feature-content h5 {
  font-size: 18px !important;
  line-height: 1.16 !important;
  font-weight: 900 !important;
  margin-bottom: 10px !important;
  color: #ffffff !important;
}

body.cosj-home #featuresBar-1 .feature-content p,
body.cosj-home #featuresBar-1 .feature-content li,
body.cosj-home #featuresBar-1 .feature-content span {
  font-size: 13px !important;
  line-height: 1.34 !important;
  color: rgba(255, 255, 255, 0.96) !important;
}

body.cosj-home #featuresBar-1 .feature-panel .feature-content > a {
  font-size: 18px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
}

body.cosj-home #featuresBar-1 .feature-timetable .btn {
  width: 150px !important;
  height: 40px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

body.cosj-home #featuresBar-1 .feature-location .map-img img {
  width: 100% !important;
  height: 50px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
}

/* =========================
   BOTÓN CHAT
   ========================= */

.cosj-chatbot__launcher {
  min-height: 60px !important;
  padding: 12px 20px !important;
}

.cosj-chatbot__launcher-text {
  font-size: 17px !important;
  font-weight: 900 !important;
}

.cosj-chatbot__launcher-icon {
  width: 42px !important;
  height: 42px !important;
}

/* =========================
   PADRÓN / OBRAS SOCIALES
   ========================= */

body.cosj-home #Departamentos-2 {
  padding-top: 58px !important;
}

body.cosj-home #Departamentos-2 .cosj-switcher {
  gap: 18px !important;
  margin-top: 26px !important;
}

body.cosj-home #Departamentos-2 .cosj-toggle-btn {
  width: auto !important;
  min-width: 340px !important;
  height: 60px !important;
  padding: 0 30px !important;
  border-radius: 16px !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
}

body.cosj-home #Departamentos-2 .cosj-toggle-btn > span:first-child {
  white-space: nowrap !important;
}

body.cosj-home #Departamentos-2 .cosj-toggle-btn .line {
  display: none !important;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1199px) {
  body.cosj-home #slider-2,
  body.cosj-home #slider-2 .slider-carousel,
  body.cosj-home #slider-2 .owl-stage-outer,
  body.cosj-home #slider-2 .owl-stage,
  body.cosj-home #slider-2 .owl-item,
  body.cosj-home #slider-2 .slide {
    height: 560px !important;
    min-height: 560px !important;
  }

  body.cosj-home #slider-2 .slide-content {
    padding: 48px 0 100px !important;
  }

  body.cosj-home #slider-2 .slide-headline {
    font-size: clamp(28px, 3.5vw, 38px) !important;
  }

  body.cosj-home #slider-2 .cosj-benefits-wrap {
    grid-template-columns: repeat(4, 118px) !important;
    max-width: 650px !important;
    gap: 18px !important;
    margin-top: 34px !important;
  }

  body.cosj-home #slider-2 .cosj-slide-list {
    grid-template-columns: repeat(4, 116px) !important;
    max-width: 620px !important;
    gap: 18px !important;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 991px) {
  body.cosj-home #primary-menu,
  body.cosj-home .header.header-topbar .navbar {
    min-height: 62px !important;
    height: 62px !important;
  }

  body.cosj-home .cosj-brand__mark {
    width: 42px !important;
    height: 42px !important;
  }

  body.cosj-home #slider-2,
  body.cosj-home #slider-2 .slider-carousel,
  body.cosj-home #slider-2 .owl-stage-outer,
  body.cosj-home #slider-2 .owl-stage,
  body.cosj-home #slider-2 .owl-item,
  body.cosj-home #slider-2 .slide {
    height: auto !important;
    min-height: 520px !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  body.cosj-home #slider-2 .slide > .container,
  body.cosj-home #slider-2 .slide-content {
    min-height: 520px !important;
  }

  body.cosj-home #slider-2 .slide-content {
    height: auto !important;
    padding: 20px 10px 22px !important;
    justify-content: flex-start !important;
  }

  body.cosj-home #slider-2 .slide-content .row,
  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .slide-content .row,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .slide-content .row,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center !important;
  }

  body.cosj-home #slider-2 .slide-content [class*="col-"],
  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .slide-content .row > .col-12,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .slide-content .row > .col-12,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-12,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-lg-7,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-lg-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.cosj-home #slider-2 .cosj-hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 11px !important;
    border-radius: 16px !important;
  }

  body.cosj-home #slider-2 .slide-headline {
    font-size: clamp(21px, 5.7vw, 29px) !important;
    line-height: 1.04 !important;
    text-align: center !important;
  }

  body.cosj-home #slider-2 .cosj-benefits-wrap {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 18px !important;
  }

  body.cosj-home #slider-2 .cosj-benefit-card {
    width: auto !important;
    min-height: 88px !important;
    padding: 5px !important;
    border-radius: 12px !important;
  }

  body.cosj-home #slider-2 .cosj-benefit-img {
    height: 48px !important;
    padding: 4px !important;
    border-radius: 9px !important;
  }

  body.cosj-home #slider-2 .cosj-benefit-title {
    min-height: 24px !important;
    margin-top: 5px !important;
    font-size: 9.5px !important;
    line-height: 1.02 !important;
  }

  body.cosj-home #slider-2 .cosj-slide-card {
    max-width: 100% !important;
    padding: 13px 12px !important;
    border-radius: 16px !important;
  }

  body.cosj-home #slider-2 .cosj-slide-card .slide-headline {
    font-size: clamp(21px, 5.6vw, 29px) !important;
    text-align: center !important;
  }

  body.cosj-home #slider-2 .cosj-slide-card__intro,
  body.cosj-home #slider-2 .cosj-slide-card__address {
    font-size: 11px !important;
    line-height: 1.15 !important;
  }

  body.cosj-home #slider-2 .cosj-slide-card__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 4px 8px !important;
    margin: 8px 0 !important;
  }

  body.cosj-home #slider-2 .cosj-slide-card__item,
  body.cosj-home #slider-2 .cosj-slide-card__note {
    font-size: 10px !important;
    line-height: 1.1 !important;
  }

  body.cosj-home #slider-2 .cosj-slide-card .btn {
    width: 100% !important;
    min-width: 0 !important;
    height: 40px !important;
    font-size: 12px !important;
  }

  body.cosj-home #slider-2 .cosj-slide-list {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 18px !important;
  }

  body.cosj-home #slider-2 .cosj-slide-list .icon {
    width: auto !important;
    min-height: 78px !important;
    padding: 7px 4px !important;
    border-radius: 12px !important;
  }

  body.cosj-home #slider-2 .cosj-slide-list .icon i {
    width: 32px !important;
    height: 32px !important;
    font-size: 18px !important;
  }

  body.cosj-home #slider-2 .cosj-slide-list .icon p {
    margin-top: 5px !important;
    font-size: 9.5px !important;
    line-height: 1.02 !important;
  }

  body.cosj-home #featuresBar-1 {
    padding: 14px 0 32px !important;
  }

  body.cosj-home #featuresBar-1 .features-holder {
    transform: none !important;
    margin-bottom: 0 !important;
    border-radius: 18px !important;
  }

  body.cosj-home #featuresBar-1 .features-holder > [class*="col-"] {
    display: block !important;
  }

  body.cosj-home #featuresBar-1 .feature-panel {
    min-height: auto !important;
    padding: 18px 16px !important;
  }

  body.cosj-home #featuresBar-1 .feature-content h5 {
    font-size: 19px !important;
    line-height: 1.1 !important;
    margin-bottom: 7px !important;
  }

  body.cosj-home #featuresBar-1 .feature-content p,
  body.cosj-home #featuresBar-1 .feature-content li,
  body.cosj-home #featuresBar-1 .feature-content span {
    font-size: 13px !important;
    line-height: 1.24 !important;
  }

  body.cosj-home #featuresBar-1 .feature-panel .feature-content > a {
    font-size: 18px !important;
  }

  body.cosj-home #Departamentos-2 .cosj-toggle-btn {
    width: 100% !important;
    max-width: 420px !important;
    min-width: 0 !important;
    height: 56px !important;
    font-size: 17px !important;
  }
}

/* =========================
   MOBILE CHICO
   ========================= */

@media (max-width: 575px) {
  body.cosj-home #slider-2,
  body.cosj-home #slider-2 .slider-carousel,
  body.cosj-home #slider-2 .owl-stage-outer,
  body.cosj-home #slider-2 .owl-stage,
  body.cosj-home #slider-2 .owl-item,
  body.cosj-home #slider-2 .slide {
    min-height: 500px !important;
  }

  body.cosj-home #slider-2 .slide > .container,
  body.cosj-home #slider-2 .slide-content {
    min-height: 500px !important;
  }

  body.cosj-home #slider-2 .slide-content {
    padding: 16px 8px 18px !important;
  }

  body.cosj-home #slider-2 .slide-headline {
    font-size: clamp(20px, 5.4vw, 27px) !important;
  }

  body.cosj-home #slider-2 .cosj-benefits-wrap {
    gap: 6px !important;
    margin-top: 14px !important;
  }

  body.cosj-home #slider-2 .cosj-benefit-card {
    min-height: 85px !important;
    padding: 4px !important;
  }

  body.cosj-home #slider-2 .cosj-benefit-img {
    height: 42px !important;
  }

  body.cosj-home #slider-2 .cosj-benefit-title,
  body.cosj-home #slider-2 .cosj-slide-list .icon p {
    font-size: 8.8px !important;
  }

  body.cosj-home #slider-2 .cosj-slide-list {
    gap: 6px !important;
  }

  body.cosj-home #slider-2 .cosj-slide-list .icon {
    min-height: 68px !important;
    padding: 6px 3px !important;
  }

  body.cosj-home #slider-2 .cosj-slide-list .icon i {
    width: 29px !important;
    height: 29px !important;
    font-size: 16px !important;
  }

  .cosj-chatbot {
    right: 14px !important;
    bottom: 76px !important;
  }

  .cosj-chatbot__launcher {
    width: 56px !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 8px !important;
  }

  .cosj-chatbot__launcher-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .cosj-wa-float {
    left: 14px !important;
    bottom: 16px !important;
    min-height: 52px !important;
    padding: 8px 13px !important;
  }
}

/* // CAMBIO AQUÍ: retoque final ancho beneficios, WhatsApp/dirección y título socio */

/* =========================
   1) BENEFICIOS: más ancho real y mejor centrado
   ========================= */

body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .slide-content .row > .col-12 {
  max-width: 1280px !important;
  flex: 0 0 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.cosj-home #slider-2 .cosj-benefits-wrap {
  grid-template-columns: repeat(8, 138px) !important;
  max-width: 1280px !important;
  gap: 20px !important;
  justify-content: center !important;
  margin-top: 42px !important;
  padding-left: 22px !important;
  padding-right: 0 !important;
  transform: translateX(18px) !important;
}

body.cosj-home #slider-2 .cosj-benefit-card {
  width: 138px !important;
  min-height: 156px !important;
  padding: 9px !important;
  border-radius: 18px !important;
}

body.cosj-home #slider-2 .cosj-benefit-img {
  height: 86px !important;
  padding: 7px !important;
  background: #ffffff !important;
}

body.cosj-home #slider-2 .cosj-benefit-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

body.cosj-home #slider-2 .cosj-benefit-title {
  min-height: 34px !important;
  padding: 0 5px !important;
  font-size: 12.5px !important;
  line-height: 1.1 !important;
}

/* =========================
   2) BUSCAMOS PACIENTES: WhatsApp y dirección en la misma línea
   ========================= */

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card {
  max-width: 920px !important;
  padding: 26px 34px !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card .btn {
  display: inline-flex !important;
  width: auto !important;
  min-width: 245px !important;
  height: 44px !important;
  margin-top: 12px !important;
  margin-right: 16px !important;
  margin-bottom: 0 !important;
  vertical-align: middle !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card__address {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  max-width: 360px !important;
  min-height: 44px !important;
  margin: 12px 0 0 !important;
  vertical-align: middle !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

/* =========================
   3) SIENDO SOCIO: fondo azul al título y caja más ancha para Termoformadora
   ========================= */

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
  display: inline-block !important;
  max-width: 920px !important;
  padding: 16px 28px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 18px !important;
  background: rgba(32, 60, 115, 0.72) !important;
  background-image: linear-gradient(135deg, rgba(32, 60, 115, 0.84), rgba(24, 192, 220, 0.30)) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 18px 42px rgba(12, 28, 60, 0.20) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  text-align: center !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list {
  grid-template-columns: 126px 126px 126px 156px !important;
  max-width: 620px !important;
  gap: 24px !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon:last-child {
  width: 156px !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon:last-child p {
  font-size: 12px !important;
  line-height: 1.06 !important;
  letter-spacing: -0.01em !important;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1199px) {
  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .slide-content .row > .col-12 {
    max-width: 680px !important;
    flex: 0 0 680px !important;
  }

  body.cosj-home #slider-2 .cosj-benefits-wrap {
    grid-template-columns: repeat(4, 138px) !important;
    max-width: 680px !important;
    gap: 18px !important;
    padding-left: 0 !important;
    transform: none !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list {
    grid-template-columns: repeat(4, 122px) !important;
    max-width: 570px !important;
    gap: 16px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon:last-child {
    width: 122px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon:last-child p {
    font-size: 10.8px !important;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 991px) {
  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .slide-content .row > .col-12 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  body.cosj-home #slider-2 .cosj-benefits-wrap {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    max-width: 100% !important;
    gap: 8px !important;
    padding-left: 0 !important;
    transform: none !important;
  }

  body.cosj-home #slider-2 .cosj-benefit-card {
    width: auto !important;
    min-height: 92px !important;
    padding: 5px !important;
  }

  body.cosj-home #slider-2 .cosj-benefit-img {
    height: 50px !important;
    padding: 4px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card .btn {
    width: 100% !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 6px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card__address {
    display: block !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin-top: 4px !important;
    font-size: 11px !important;
    line-height: 1.18 !important;
    text-align: center !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
    max-width: 100% !important;
    padding: 12px 12px !important;
    border-radius: 16px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    max-width: 100% !important;
    gap: 8px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon:last-child {
    width: auto !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon:last-child p {
    font-size: 8.7px !important;
    line-height: 1.02 !important;
  }
}

/* =========================
   MOBILE CHICO
   ========================= */

@media (max-width: 575px) {
  body.cosj-home #slider-2 .cosj-benefit-title {
    font-size: 8.8px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon:last-child p {
    font-size: 8.3px !important;
  }
}

/* // CAMBIO AQUÍ: mobile limpio, sin cajas feas en slider */

/* =========================
   MOBILE LIMPIO
   ========================= */

@media (max-width: 991px) {

  /* NAVBAR MOBILE MÁS BAJO */
  body.cosj-home #primary-menu,
  body.cosj-home .header.header-topbar .navbar {
    height: 54px !important;
    min-height: 54px !important;
    padding: 0 14px !important;
  }

  body.cosj-home .cosj-brand {
    margin: 0 !important;
    gap: 0 !important;
  }

  body.cosj-home .cosj-brand__mark {
    width: 34px !important;
    height: 34px !important;
    padding: 4px !important;
    border-radius: 10px !important;
  }

  body.cosj-home .cosj-brand__type {
    display: none !important;
  }

  body.cosj-home .navbar-toggler {
    width: 38px !important;
    height: 38px !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  /* SLIDER MOBILE BASE */
  body.cosj-home #slider-2,
  body.cosj-home #slider-2 .slider-carousel,
  body.cosj-home #slider-2 .owl-stage-outer,
  body.cosj-home #slider-2 .owl-stage,
  body.cosj-home #slider-2 .owl-item,
  body.cosj-home #slider-2 .slide {
    height: 390px !important;
    min-height: 390px !important;
    max-height: 390px !important;
    overflow: hidden !important;
  }

  body.cosj-home #slider-2 .slide > .container,
  body.cosj-home #slider-2 .slide-content {
    height: 390px !important;
    min-height: 390px !important;
    max-height: 390px !important;
  }

  body.cosj-home #slider-2 .slide {
    background-position: center center !important;
  }

  body.cosj-home #slider-2 .slide > .bg-section,
  body.cosj-home #slider-2 .slide > .bg-section img {
    background-position: center center !important;
    object-position: center center !important;
  }

  body.cosj-home #slider-2 .slide-content {
    padding: 34px 14px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  body.cosj-home #slider-2 .slide-content .row {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    justify-content: center !important;
  }

  body.cosj-home #slider-2 .slide-content [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
  }

  /* TÍTULO MOBILE SIMPLE */
  body.cosj-home #slider-2 .cosj-hero-copy,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 14px 16px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, rgba(32, 60, 115, 0.88), rgba(24, 150, 190, 0.78)) !important;
    border: 0 !important;
    box-shadow: 0 14px 30px rgba(16, 34, 66, 0.22) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.cosj-home #slider-2 .slide-headline {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    color: #ffffff !important;
    font-size: 21px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
  }

  /* OCULTAR BENEFICIOS EN MOBILE PARA QUE NO SE VEA ROTO */
  body.cosj-home #slider-2 .cosj-benefits-wrap,
  body.cosj-home #slider-2 .cosj-slide-list {
    display: none !important;
  }

  /* BUSCAMOS PACIENTES MOBILE MÁS GRANDE Y PROLIJO */
  body.cosj-home #slider-2 .slide:has(.cosj-slide-card),
  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) > .container,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .slide-content {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .slide-content {
    padding: 24px 14px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    padding: 18px 16px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, rgba(32, 60, 115, 0.88), rgba(24, 150, 190, 0.74)) !important;
    border: 0 !important;
    box-shadow: 0 14px 30px rgba(16, 34, 66, 0.22) !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card .slide-headline {
    font-size: 25px !important;
    line-height: 1.05 !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card__intro {
    font-size: 13px !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px 10px !important;
    margin: 14px 0 !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card__item,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card__note {
    font-size: 11px !important;
    line-height: 1.15 !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card .btn {
    width: 100% !important;
    min-width: 0 !important;
    height: 42px !important;
    margin: 10px 0 8px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card__address {
    display: block !important;
    max-width: 100% !important;
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  /* BAJAR UN POCO EL CHAT EN MOBILE */
  .cosj-chatbot {
    right: 16px !important;
    bottom: 84px !important;
  }

  .cosj-chatbot__launcher {
    width: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 7px !important;
  }

  .cosj-chatbot__launcher-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .cosj-chatbot__launcher-text {
    display: none !important;
  }

  .cosj-wa-float {
    left: 16px !important;
    bottom: 18px !important;
    min-height: 52px !important;
    padding: 8px 14px !important;
  }
}

/* =========================
   MOBILE CHICO
   ========================= */

@media (max-width: 575px) {
  body.cosj-home #slider-2,
  body.cosj-home #slider-2 .slider-carousel,
  body.cosj-home #slider-2 .owl-stage-outer,
  body.cosj-home #slider-2 .owl-stage,
  body.cosj-home #slider-2 .owl-item,
  body.cosj-home #slider-2 .slide,
  body.cosj-home #slider-2 .slide > .container,
  body.cosj-home #slider-2 .slide-content {
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
  }

  body.cosj-home #slider-2 .slide-content {
    padding: 28px 12px !important;
  }

  body.cosj-home #slider-2 .cosj-hero-copy,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
    max-width: 300px !important;
    padding: 13px 14px !important;
  }

  body.cosj-home #slider-2 .slide-headline {
    font-size: 20px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card),
  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) > .container,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .slide-content {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
  }
}

/* // CAMBIO AQUÍ: ocultar slider y banner inferior en mobile */

@media (max-width: 991px) {
  body.cosj-home #slider-2,
  body.cosj-home .slider-2,
  body.cosj-home #featuresBar-1,
  body.cosj-home .features-bar {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  body.cosj-home #Departamentos-2 {
    margin-top: 0 !important;
    padding-top: 42px !important;
  }

  body.cosj-home #Departamentos-2 .heading {
    margin-bottom: 24px !important;
  }

  body.cosj-home #Departamentos-2 .heading .heading-title {
    font-size: 30px !important;
    line-height: 1.15 !important;
  }

  body.cosj-home #Departamentos-2 .heading .heading-subtitle {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 575px) {
  body.cosj-home #Departamentos-2 {
    padding-top: 34px !important;
  }

  body.cosj-home #Departamentos-2 .heading {
    margin-bottom: 20px !important;
  }

  body.cosj-home #Departamentos-2 .heading .heading-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }

  body.cosj-home #Departamentos-2 .heading .heading-subtitle {
    font-size: 14px !important;
  }
}

/* // CAMBIO AQUÍ: volver hero a estilo original con fondo azul translúcido, más ancho y con imágenes más abajo */

/* =========================
   HERO ORIGINAL + AZUL
   ========================= */

body.cosj-home #slider-2,
body.cosj-home #slider-2 .slider-carousel,
body.cosj-home #slider-2 .owl-stage-outer,
body.cosj-home #slider-2 .owl-stage,
body.cosj-home #slider-2 .owl-item,
body.cosj-home #slider-2 .slide {
  min-height: 620px !important;
  height: 620px !important;
  overflow: hidden !important;
}

body.cosj-home #slider-2 .slide {
  position: relative !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center 88% !important;
}

body.cosj-home #slider-2 .slide > .bg-section {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center 88% !important;
}

body.cosj-home #slider-2 .slide > .bg-section img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 88% !important;
}

/* Contenido como original pero más aprovechado a lo ancho */
body.cosj-home #slider-2 .slide-content {
  min-height: 620px !important;
  height: 620px !important;
  padding: 56px 0 108px !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

body.cosj-home #slider-2 .slide-content .row {
  width: 100% !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

body.cosj-home #slider-2 .slide-content [class*="col-"] {
  max-width: 78% !important;
  flex: 0 0 78% !important;
}

/* =========================
   CAJAS AZULES TIPO ORIGINAL
   ========================= */

body.cosj-home #slider-2 .cosj-hero-copy,
body.cosj-home #slider-2 .cosj-slide-card,
body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
  background: rgba(17, 46, 92, 0.74) !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: 0 18px 42px rgba(10, 24, 53, 0.20) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* Evitar dobles fondos */
body.cosj-home #slider-2 .cosj-hero-copy .slide-headline,
body.cosj-home #slider-2 .cosj-slide-card .slide-headline {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* =========================
   TITULOS MÁS ANCHOS
   ========================= */

body.cosj-home #slider-2 .slide-headline {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  font-size: clamp(2.45rem, 4vw, 4.05rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.04em !important;
  color: #ffffff !important;
  text-align: left !important;
  text-wrap: balance !important;
}

body.cosj-home #slider-2 .cosj-hero-copy {
  display: block !important;
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  padding: 22px 28px 24px !important;
  border-radius: 28px !important;
}

/* =========================
   BENEFICIOS COMO ORIGINAL + AZUL
   ========================= */

body.cosj-home #slider-2 .cosj-benefits-wrap {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: min(100%, 1240px) !important;
  max-width: 1240px !important;
  margin-top: 30px !important;
  padding: 0 !important;
  align-items: start !important;
  justify-content: start !important;
  transform: none !important;
}

body.cosj-home #slider-2 .cosj-benefit-card {
  width: 100% !important;
  min-height: auto !important;
  padding: 8px !important;
  border-radius: 22px !important;
  background: rgba(17, 46, 92, 0.46) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 16px 28px rgba(10, 24, 53, 0.16) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

body.cosj-home #slider-2 .cosj-benefit-img {
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 16px !important;
}

body.cosj-home #slider-2 .cosj-benefit-img img {
  width: 100% !important;
  height: 112px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 16px !important;
}

body.cosj-home #slider-2 .cosj-benefit-title {
  min-height: 38px !important;
  margin-top: 8px !important;
  padding: 0 2px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  line-height: 1.16 !important;
  font-weight: 900 !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* =========================
   SEGUNDO SLIDE / EQUIPAMIENTO
   ORIGINAL + MÁS ABAJO
   ========================= */

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) {
  background-position: center 92% !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) > .bg-section {
  background-position: center 92% !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) > .bg-section img {
  object-position: center 92% !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content {
  padding-top: 56px !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
  display: block !important;
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  padding: 22px 28px 24px !important;
  border-radius: 28px !important;
  text-align: left !important;
}

body.cosj-home #slider-2 .cosj-slide-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 132px)) !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-top: 110px !important;
  padding: 0 !important;
}

body.cosj-home #slider-2 .cosj-slide-list .icon {
  width: auto !important;
  min-height: 138px !important;
  padding: 18px !important;
  border-radius: 22px !important;
  background: rgba(17, 46, 92, 0.46) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 16px 28px rgba(10, 24, 53, 0.16) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

body.cosj-home #slider-2 .cosj-slide-list .icon p {
  color: #ffffff !important;
  font-size: 15px !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
}

/* =========================
   BUSCAMOS PACIENTES: ORIGINAL + AZUL
   ========================= */

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) {
  background-position: center 86% !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) > .bg-section {
  background-position: center 86% !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) > .bg-section img {
  object-position: center 86% !important;
}

body.cosj-home #slider-2 .cosj-slide-card {
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  padding: 26px 30px !important;
  border-radius: 28px !important;
}

body.cosj-home #slider-2 .cosj-slide-card .slide-headline {
  width: 100% !important;
  max-width: none !important;
  font-size: clamp(2.45rem, 4vw, 4.05rem) !important;
  line-height: 1.06 !important;
  text-align: left !important;
}

body.cosj-home #slider-2 .cosj-slide-card__intro,
body.cosj-home #slider-2 .cosj-slide-card__address {
  font-size: 16px !important;
  line-height: 1.35 !important;
}

body.cosj-home #slider-2 .cosj-slide-card__item,
body.cosj-home #slider-2 .cosj-slide-card__note {
  font-size: 14px !important;
  line-height: 1.25 !important;
}

body.cosj-home #slider-2 .cosj-slide-card .btn {
  width: 240px !important;
  min-width: 240px !important;
  height: 50px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1399px) {
  body.cosj-home #slider-2 .slide-content [class*="col-"] {
    max-width: 82% !important;
    flex: 0 0 82% !important;
  }

  body.cosj-home #slider-2 .cosj-hero-copy,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline,
  body.cosj-home #slider-2 .cosj-slide-card {
    width: min(100%, 900px) !important;
    max-width: 900px !important;
  }

  body.cosj-home #slider-2 .cosj-benefits-wrap {
    grid-template-columns: repeat(4, minmax(0, 148px)) !important;
    max-width: 680px !important;
  }
}

@media (max-width: 1199px) {
  body.cosj-home #slider-2,
  body.cosj-home #slider-2 .slider-carousel,
  body.cosj-home #slider-2 .owl-stage-outer,
  body.cosj-home #slider-2 .owl-stage,
  body.cosj-home #slider-2 .owl-item,
  body.cosj-home #slider-2 .slide {
    min-height: 580px !important;
    height: 580px !important;
  }

  body.cosj-home #slider-2 .slide-content {
    min-height: 580px !important;
    height: 580px !important;
  }

  body.cosj-home #slider-2 .slide-content [class*="col-"] {
    max-width: 88% !important;
    flex: 0 0 88% !important;
  }

  body.cosj-home #slider-2 .slide-headline,
  body.cosj-home #slider-2 .cosj-slide-card .slide-headline {
    font-size: clamp(2.2rem, 3.6vw, 3.4rem) !important;
  }

  body.cosj-home #slider-2 .cosj-hero-copy,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline,
  body.cosj-home #slider-2 .cosj-slide-card {
    width: min(100%, 820px) !important;
    max-width: 820px !important;
  }

  body.cosj-home #slider-2 .cosj-slide-list {
    margin-top: 88px !important;
  }
}

/* =========================
   MOBILE: mantener oculto slider/banner
   ========================= */

@media (max-width: 991px) {
  body.cosj-home #slider-2,
  body.cosj-home .slider-2,
  body.cosj-home #featuresBar-1,
  body.cosj-home .features-bar {
    display: none !important;
  }

  body.cosj-home #Departamentos-2 {
    padding-top: 34px !important;
  }
}

/* // CAMBIO AQUÍ: corregir slide equipamiento estilo original */

/* SOLO SLIDE "SIENDO SOCIO" */
body.cosj-home #slider-2 .slide:has(.cosj-slide-list) {
  background-position: center 88% !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) > .bg-section {
  background-position: center 88% !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) > .bg-section img {
  object-position: center 88% !important;
}

/* Ubicación general del contenido */
body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content {
  padding-top: 58px !important;
  padding-bottom: 110px !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row {
  justify-content: flex-start !important;
  text-align: left !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content [class*="col-"] {
  max-width: 72% !important;
  flex: 0 0 72% !important;
}

/* Título: azul oscuro, ancho, no en torre */
body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
  display: block !important;
  width: 760px !important;
  max-width: 760px !important;
  padding: 20px 28px 22px !important;
  margin: 0 !important;
  border-radius: 18px !important;
  background: rgba(17, 46, 92, 0.76) !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: 0 18px 42px rgba(10, 24, 53, 0.20) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #ffffff !important;
  font-size: clamp(2.45rem, 3.35vw, 3.85rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.04em !important;
  text-align: left !important;
}

/* Íconos: como original, sin caja azul grande */
body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list {
  display: grid !important;
  grid-template-columns: repeat(4, 112px) !important;
  justify-content: flex-start !important;
  gap: 42px !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-top: 62px !important;
  padding: 0 !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon {
  width: 112px !important;
  min-height: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: center !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 92px !important;
  height: 92px !important;
  margin: 0 auto !important;
  border-radius: 7px !important;
  background: #ffffff !important;
  color: #203c73 !important;
  font-size: 50px !important;
  box-shadow: none !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon p {
  margin: 12px 0 0 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  text-align: center !important;
}

/* Tablet */
@media (max-width: 1199px) {
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content [class*="col-"] {
    max-width: 82% !important;
    flex: 0 0 82% !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
    width: 680px !important;
    max-width: 680px !important;
    font-size: clamp(2.2rem, 3.3vw, 3.3rem) !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list {
    grid-template-columns: repeat(4, 100px) !important;
    gap: 28px !important;
    margin-top: 52px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon {
    width: 100px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon i {
    width: 78px !important;
    height: 78px !important;
    font-size: 42px !important;
  }
}

/* // CAMBIO AQUÍ: bajar visualmente las 3 imágenes del slider */

/* SLIDE 1: beneficios */
body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap),
body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) > .bg-section {
  background-position: center top !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) > .bg-section img {
  object-position: center top !important;
}

/* SLIDE 2: buscamos pacientes */
body.cosj-home #slider-2 .slide:has(.cosj-slide-card),
body.cosj-home #slider-2 .slide:has(.cosj-slide-card) > .bg-section {
  background-position: center top !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) > .bg-section img {
  object-position: center top !important;
}

/* SLIDE 3: equipamiento */
body.cosj-home #slider-2 .slide:has(.cosj-slide-list),
body.cosj-home #slider-2 .slide:has(.cosj-slide-list) > .bg-section {
  background-position: center top !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) > .bg-section img {
  object-position: center top !important;
}

/* 2026-04-30: limpieza visual final home publica */

.cosj-mobile-hero {
  display: none;
}

.cosj-mobile-hero-shell {
  display: none;
}

body.cosj-home,
body.cosj-home p,
body.cosj-home a,
body.cosj-home li,
body.cosj-home span,
body.cosj-home input,
body.cosj-home textarea,
body.cosj-home button,
body.cosj-home label {
  font-family: "Heebo", "Roboto", Arial, sans-serif !important;
}

body.cosj-home h1,
body.cosj-home h2,
body.cosj-home h3,
body.cosj-home h4,
body.cosj-home h5,
body.cosj-home .heading-title,
body.cosj-home .slide-headline,
body.cosj-home .navbar-nav .nav-item > a,
body.cosj-home .module-Contacto .btn,
body.cosj-home .cosj-brand__title,
body.cosj-home .cosj-brand__subtitle,
body.cosj-home .cosj-chatbot__launcher-text,
body.cosj-home .cosj-toggle-btn {
  font-family: "Rubik", "Heebo", "Roboto", Arial, sans-serif !important;
}

body.cosj-home .top-bar {
  padding: 8px 24px !important;
  background: #203c73 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

body.cosj-home .top-bar .headline {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
}

body.cosj-home .top-bar .Contacto-body a,
body.cosj-home .top-bar .Contacto-body p {
  font-size: 13px !important;
  font-weight: 500 !important;
}

body.cosj-home #primary-menu,
body.cosj-home .header.header-topbar .navbar {
  min-height: 84px !important;
  height: auto !important;
  padding: 0 28px !important;
  background: rgba(255, 255, 255, 0.985) !important;
  border: 0 !important;
  box-shadow: 0 10px 30px rgba(16, 34, 66, 0.08) !important;
}

body.cosj-home .navbar-sticky.navbar-fixed {
  box-shadow: 0 10px 24px rgba(16, 34, 66, 0.08) !important;
}

body.cosj-home .navbar-nav {
  gap: 12px !important;
}

body.cosj-home .navbar-nav .nav-item > a {
  padding: 31px 8px !important;
  color: var(--cosj-text) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

body.cosj-home .navbar-nav .nav-item > a::after {
  bottom: 16px !important;
  height: 2px !important;
}

body.cosj-home .cosj-brand {
  position: relative !important;
  gap: 16px !important;
  margin-right: 34px !important;
  padding: 6px 26px 6px 0 !important;
}

body.cosj-home .cosj-brand::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  width: 1px !important;
  height: 42px !important;
  background: rgba(32, 60, 115, 0.12) !important;
  transform: translateY(-50%) !important;
}

body.cosj-home .cosj-brand__mark {
  width: 56px !important;
  height: 56px !important;
  padding: 7px !important;
  border-radius: 18px !important;
  background: #f4f7fb !important;
  border: 1px solid rgba(32, 60, 115, 0.08) !important;
  box-shadow: none !important;
}

body.cosj-home .cosj-brand__title {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
}

body.cosj-home .cosj-brand__subtitle {
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

body.cosj-home .module-holder,
body.cosj-home .module-holder-phone {
  height: auto !important;
}

body.cosj-home .module-Contacto .btn {
  min-height: 52px !important;
  height: auto !important;
  padding: 0 28px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  box-shadow: none !important;
}

body.cosj-home #slider-2,
body.cosj-home #slider-2 .slider-carousel,
body.cosj-home #slider-2 .owl-stage-outer,
body.cosj-home #slider-2 .owl-stage,
body.cosj-home #slider-2 .owl-item,
body.cosj-home #slider-2 .slide {
  height: 540px !important;
  min-height: 540px !important;
  max-height: none !important;
}

body.cosj-home #slider-2 .slide,
body.cosj-home #slider-2 .slide > .bg-section,
body.cosj-home #slider-2 .slide > .bg-section img {
  background-position: center center !important;
  object-position: center center !important;
}

body.cosj-home #slider-2 .slide::before {
  background: linear-gradient(90deg, rgba(10, 18, 32, 0.28) 0%, rgba(10, 18, 32, 0.14) 40%, rgba(10, 18, 32, 0.06) 100%) !important;
  opacity: 1 !important;
}

body.cosj-home #slider-2 .slide-content {
  height: 100% !important;
  min-height: 0 !important;
  padding: 56px 0 72px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.cosj-home #slider-2 .slide-content .row {
  width: 100% !important;
  align-items: center !important;
}

body.cosj-home #slider-2 .slide-headline {
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18) !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-hero-copy {
  width: auto !important;
  max-width: 760px !important;
  margin: 0 !important;
  padding: 0 0 0 24px !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-left: 3px solid rgba(255, 255, 255, 0.76) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .slide-headline {
  max-width: 11.8ch !important;
  font-size: clamp(2.85rem, 4vw, 4.25rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-benefits-wrap {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 114px)) !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  width: auto !important;
  max-width: none !important;
  margin: 30px 0 0 !important;
  padding: 0 !important;
  transform: none !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-benefit-card {
  width: auto !important;
  min-height: 138px !important;
  padding: 8px !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.52) !important;
  box-shadow: 0 14px 26px rgba(16, 34, 66, 0.14) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-benefit-img {
  height: 78px !important;
  padding: 6px !important;
  border-radius: 16px !important;
  background: #ffffff !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-benefit-title {
  min-height: 30px !important;
  margin-top: 8px !important;
  color: var(--cosj-text) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card {
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 !important;
  padding: 28px 30px !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.54) !important;
  box-shadow: 0 24px 48px rgba(16, 34, 66, 0.16) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card .slide-headline {
  max-width: 100% !important;
  color: var(--cosj-primary) !important;
  font-size: clamp(2.1rem, 3vw, 3.1rem) !important;
  line-height: 1.04 !important;
  text-shadow: none !important;
}

body.cosj-home #slider-2 .cosj-slide-card__intro,
body.cosj-home #slider-2 .cosj-slide-card__address {
  color: var(--cosj-muted) !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

body.cosj-home #slider-2 .cosj-slide-card__item,
body.cosj-home #slider-2 .cosj-slide-card__note {
  color: var(--cosj-primary) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card .btn {
  min-width: 220px !important;
  height: 44px !important;
  margin-top: 12px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-12,
body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-lg-7,
body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-lg-6 {
  max-width: 760px !important;
  flex: 0 0 760px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
  display: block !important;
  max-width: 11.8ch !important;
  margin: 0 !important;
  padding: 0 0 0 24px !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-left: 3px solid rgba(255, 255, 255, 0.76) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: #ffffff !important;
  font-size: clamp(2.6rem, 3.6vw, 4rem) !important;
  line-height: 1.04 !important;
  text-align: left !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list {
  display: grid !important;
  grid-template-columns: repeat(4, 114px) !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  width: auto !important;
  max-width: none !important;
  margin: 30px 0 0 24px !important;
  padding: 0 !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon {
  width: 114px !important;
  min-height: 126px !important;
  padding: 16px 12px !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 14px 28px rgba(16, 34, 66, 0.12) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  align-items: center !important;
  text-align: center !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon i {
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  color: var(--cosj-primary) !important;
  font-size: 28px !important;
  box-shadow: none !important;
}

body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon p {
  margin: 12px 0 0 !important;
  color: var(--cosj-primary) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  text-align: center !important;
}

body.cosj-home .slider-carousel .owl-nav button {
  width: 52px !important;
  height: 52px !important;
  background: rgba(255, 255, 255, 0.32) !important;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
  box-shadow: none !important;
}

body.cosj-home #featuresBar-1 {
  display: none !important;
}

body.cosj-home #Departamentos-2 {
  padding-top: 90px !important;
}

body.cosj-home #Departamentos-2 .heading {
  position: relative !important;
  padding-top: 24px !important;
}

body.cosj-home #Departamentos-2 .heading::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: 92px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(32, 60, 115, 0.28), transparent) !important;
  transform: translateX(-50%) !important;
}

body.cosj-home .cosj-chatbot__launcher {
  min-height: 56px !important;
  padding: 12px 18px !important;
  background: #ffffff !important;
  color: var(--cosj-primary) !important;
  border: 1px solid rgba(32, 60, 115, 0.1) !important;
  box-shadow: 0 14px 28px rgba(16, 34, 66, 0.12) !important;
}

body.cosj-home .cosj-chatbot__launcher-icon {
  background: linear-gradient(135deg, var(--cosj-primary), var(--cosj-accent)) !important;
  color: #ffffff !important;
}

body.cosj-home .cosj-chatbot__launcher-text {
  font-size: 15px !important;
  font-weight: 700 !important;
}

@media (max-width: 1199px) {
  body.cosj-home #primary-menu,
  body.cosj-home .header.header-topbar .navbar {
    min-height: 80px !important;
    padding: 0 20px !important;
  }

  body.cosj-home .cosj-brand {
    margin-right: 24px !important;
    padding-right: 18px !important;
  }

  body.cosj-home #slider-2,
  body.cosj-home #slider-2 .slider-carousel,
  body.cosj-home #slider-2 .owl-stage-outer,
  body.cosj-home #slider-2 .owl-stage,
  body.cosj-home #slider-2 .owl-item,
  body.cosj-home #slider-2 .slide {
    height: 520px !important;
    min-height: 520px !important;
  }

  body.cosj-home #slider-2 .slide-content {
    padding: 48px 0 64px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-benefits-wrap {
    grid-template-columns: repeat(4, minmax(0, 114px)) !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-12,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-lg-7,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row > .col-lg-6 {
    max-width: 680px !important;
    flex: 0 0 680px !important;
  }
}

@media (max-width: 991px) {
  body.cosj-home .cosj-mobile-hero-shell {
    position: relative !important;
    display: block !important;
    padding: 28px 0 34px !important;
    background:
      linear-gradient(180deg, rgba(10, 18, 32, 0.12), rgba(10, 18, 32, 0.18)),
      url("../images/sliders/1.jpg") center center / cover no-repeat !important;
  }

  body.cosj-home .cosj-mobile-hero-shell::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(160deg, rgba(9, 18, 34, 0.18) 0%, rgba(9, 18, 34, 0.04) 52%, rgba(9, 18, 34, 0.22) 100%) !important;
  }

  body.cosj-home .cosj-mobile-hero-shell .container {
    position: relative !important;
    z-index: 1 !important;
  }

  body.cosj-home .cosj-mobile-hero-shell .cosj-mobile-hero__copy {
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 18px 18px 20px !important;
    border-radius: 20px !important;
    background: rgba(32, 60, 115, 0.78) !important;
    box-shadow: 0 16px 32px rgba(16, 34, 66, 0.18) !important;
  }

  body.cosj-home .cosj-mobile-hero-shell .cosj-mobile-hero__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: "Rubik", "Heebo", "Roboto", Arial, sans-serif !important;
    font-size: clamp(2rem, 6vw, 2.9rem) !important;
    font-weight: 700 !important;
    line-height: 1.06 !important;
    letter-spacing: -0.03em !important;
    text-align: center !important;
  }

  body.cosj-home #slider-2 > .cosj-mobile-hero {
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 420px !important;
    padding: 34px 0 42px !important;
    background:
      linear-gradient(180deg, rgba(10, 18, 32, 0.12), rgba(10, 18, 32, 0.18)),
      url("../images/sliders/1.jpg") center center / cover no-repeat !important;
  }

  body.cosj-home #slider-2 > .cosj-mobile-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(160deg, rgba(9, 18, 34, 0.18) 0%, rgba(9, 18, 34, 0.04) 52%, rgba(9, 18, 34, 0.22) 100%) !important;
  }

  body.cosj-home #slider-2 > .cosj-mobile-hero .container {
    position: relative !important;
    z-index: 1 !important;
  }

  body.cosj-home #slider-2 > .cosj-mobile-hero .cosj-mobile-hero__copy {
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 18px 18px 20px !important;
    border-radius: 20px !important;
    background: rgba(32, 60, 115, 0.78) !important;
    box-shadow: 0 16px 32px rgba(16, 34, 66, 0.18) !important;
  }

  body.cosj-home #slider-2 > .cosj-mobile-hero .cosj-mobile-hero__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: "Rubik", "Heebo", "Roboto", Arial, sans-serif !important;
    font-size: clamp(2rem, 6vw, 2.9rem) !important;
    font-weight: 700 !important;
    line-height: 1.06 !important;
    letter-spacing: -0.03em !important;
    text-align: center !important;
  }

  body.cosj-home #slider-2,
  body.cosj-home #slider-2 > .container-fluid,
  body.cosj-home #slider-2 .slider-carousel {
    display: none !important;
  }

  body.cosj-home #primary-menu,
  body.cosj-home .header.header-topbar .navbar {
    min-height: 74px !important;
    padding: 10px 16px !important;
  }

  body.cosj-home #primary-menu .navbar-collapse {
    margin-top: 12px !important;
    padding: 18px 16px 16px !important;
    border-radius: 20px !important;
    box-shadow: 0 18px 34px rgba(16, 34, 66, 0.14) !important;
  }

  body.cosj-home .cosj-brand {
    gap: 12px !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  body.cosj-home .cosj-brand::after {
    display: none !important;
  }

  body.cosj-home .cosj-brand__mark {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
  }

  body.cosj-home .cosj-brand__type {
    display: flex !important;
  }

  body.cosj-home .cosj-brand__title {
    font-size: 12px !important;
  }

  body.cosj-home .cosj-brand__subtitle {
    font-size: 13px !important;
  }

  body.cosj-home .navbar-nav .nav-item > a {
    padding: 12px 0 !important;
    font-size: 13px !important;
  }

  body.cosj-home .module-holder {
    padding-top: 6px !important;
  }

  body.cosj-home #Departamentos-2 {
    padding-top: 58px !important;
  }

  body.cosj-home #Departamentos-2 .heading-title {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 18px !important;
    font-size: clamp(1.45rem, 5.4vw, 1.9rem) !important;
    line-height: 1.08 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
}

@media (max-width: 767px) {
  body.cosj-home .cosj-brand__type {
    display: none !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-hero-copy,
  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
    max-width: 320px !important;
  }

  body.cosj-home .cosj-chatbot__launcher-text {
    display: none !important;
  }
}

/* 2026-04-30: ajuste final hero desktop/mobile */

@media (min-width: 992px) {
  body.cosj-home #slider-2,
  body.cosj-home #slider-2 .slider-carousel,
  body.cosj-home #slider-2 .owl-stage-outer,
  body.cosj-home #slider-2 .owl-stage,
  body.cosj-home #slider-2 .owl-item,
  body.cosj-home #slider-2 .slide {
    height: 560px !important;
    min-height: 560px !important;
  }

  body.cosj-home #slider-2 .slide-content {
    padding: 38px 0 46px !important;
    align-items: center !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .slide-content .row {
    display: grid !important;
    grid-template-columns: minmax(360px, 470px) minmax(540px, 1fr) !important;
    align-items: center !important;
    column-gap: 40px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .slide-content [class*="col-"] {
    max-width: none !important;
    width: auto !important;
    flex: none !important;
    padding: 0 !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-hero-copy {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 0 0 28px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .slide-headline {
    max-width: 14.2ch !important;
    font-size: clamp(2.9rem, 3.8vw, 4.3rem) !important;
    line-height: 0.98 !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-benefits-wrap {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 640px !important;
    margin: 0 !important;
    align-content: center !important;
    justify-content: stretch !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-benefit-card {
    min-height: 132px !important;
    padding: 8px !important;
    border-radius: 20px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-benefit-img {
    height: 74px !important;
    border-radius: 15px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) .cosj-benefit-title {
    min-height: 28px !important;
    font-size: 12px !important;
    line-height: 1.12 !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card {
    max-width: 800px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-card) .cosj-slide-card .slide-headline {
    max-width: 100% !important;
    font-size: clamp(2.3rem, 3vw, 3.25rem) !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content .row {
    display: grid !important;
    grid-template-columns: minmax(420px, 600px) minmax(280px, 1fr) !important;
    align-items: center !important;
    column-gap: 38px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-content [class*="col-"] {
    max-width: none !important;
    width: auto !important;
    flex: none !important;
    padding: 0 !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .slide-headline {
    max-width: 14.1ch !important;
    margin: 0 !important;
    padding: 0 0 0 28px !important;
    font-size: clamp(2.65rem, 3.45vw, 4rem) !important;
    line-height: 1 !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list {
    grid-template-columns: repeat(2, minmax(0, 138px)) !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 290px !important;
    margin: 0 !important;
    justify-content: stretch !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon {
    width: auto !important;
    min-height: 128px !important;
    padding: 16px 12px !important;
    border-radius: 20px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon i {
    width: 50px !important;
    height: 50px !important;
    font-size: 26px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon p {
    font-size: 13px !important;
    line-height: 1.15 !important;
  }
}

.cosj-mobile-hero-shell {
  display: none !important;
}

@media (max-width: 991px) {
  body.cosj-home .cosj-mobile-hero-shell {
    display: block !important;
    padding: 14px 0 26px !important;
    background: transparent !important;
  }

  body.cosj-home .cosj-mobile-hero-carousel {
    position: relative !important;
    min-height: 440px !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 22px 44px rgba(16, 34, 66, 0.16) !important;
  }

  body.cosj-home .cosj-mobile-hero-slide {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
    background:
      linear-gradient(180deg, rgba(10, 18, 32, 0.08), rgba(10, 18, 32, 0.5)),
      var(--cosj-mobile-bg) center center / cover no-repeat !important;
    z-index: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(1.01) !important;
    transition: opacity 0.22s ease, transform 0.28s ease !important;
    pointer-events: none !important;
  }

  body.cosj-home .cosj-mobile-hero-slide.is-active {
    z-index: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    pointer-events: auto !important;
  }

  body.cosj-home .cosj-mobile-hero-slide__overlay {
    width: 100% !important;
    padding: 22px 18px 58px !important;
  }

  body.cosj-home .cosj-mobile-hero__copy,
  body.cosj-home .cosj-mobile-hero__copy--compact {
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 18px 18px 20px !important;
    border-radius: 24px !important;
    background: rgba(32, 60, 115, 0.74) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 16px 30px rgba(16, 34, 66, 0.18) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  body.cosj-home .cosj-mobile-hero__eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
  }

  body.cosj-home .cosj-mobile-hero__title,
  body.cosj-home .cosj-mobile-hero__title--medium {
    margin: 12px 0 0 !important;
    color: #ffffff !important;
    font-family: "Rubik", "Heebo", "Roboto", Arial, sans-serif !important;
    font-size: clamp(2rem, 7vw, 2.8rem) !important;
    font-weight: 700 !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    text-align: center !important;
    text-wrap: balance !important;
  }

  body.cosj-home .cosj-mobile-hero__title--medium {
    font-size: clamp(1.7rem, 6vw, 2.3rem) !important;
  }

  body.cosj-home .cosj-mobile-hero__text {
    margin: 12px 0 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
    text-align: center !important;
  }

  body.cosj-home .cosj-mobile-hero__tags {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  body.cosj-home .cosj-mobile-hero__tags span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 10px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }

  body.cosj-home .cosj-mobile-hero__icons {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 14px !important;
  }

  body.cosj-home .cosj-mobile-hero__icon {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 88px !important;
    padding: 12px 10px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  body.cosj-home .cosj-mobile-hero__icon i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: var(--cosj-primary) !important;
    font-size: 22px !important;
  }

  body.cosj-home .cosj-mobile-hero__icon span {
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.18 !important;
    text-align: center !important;
  }

  body.cosj-home .cosj-mobile-hero__dots {
    position: absolute !important;
    left: 50% !important;
    bottom: 18px !important;
    z-index: 3 !important;
    display: flex !important;
    gap: 8px !important;
    transform: translateX(-50%) !important;
  }

  body.cosj-home .cosj-mobile-hero__dots button {
    width: 10px !important;
    height: 10px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    box-shadow: none !important;
  }

  body.cosj-home .cosj-mobile-hero__dots button.is-active {
    width: 28px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
  }

  body.cosj-home #slider-2,
  body.cosj-home #featuresBar-1 {
    display: none !important;
  }

  body.cosj-home #Departamentos-2 {
    padding-top: 32px !important;
  }
}

@media (max-width: 575px) {
  body.cosj-home .cosj-mobile-hero-carousel {
    min-height: 420px !important;
    border-radius: 24px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide__overlay {
    padding: 18px 14px 54px !important;
  }

  body.cosj-home .cosj-mobile-hero__copy,
  body.cosj-home .cosj-mobile-hero__copy--compact {
    max-width: 300px !important;
    padding: 16px 16px 18px !important;
  }

  body.cosj-home .cosj-mobile-hero__title,
  body.cosj-home .cosj-mobile-hero__title--medium {
    font-size: clamp(1.75rem, 7.2vw, 2.35rem) !important;
  }

  body.cosj-home .cosj-mobile-hero__title--medium {
    font-size: clamp(1.55rem, 6.2vw, 2rem) !important;
  }
}

/* 2026-05-01: ajuste fino final del hero publico */
@media (min-width: 992px) {
  body.cosj-home #slider-2 .slide > .bg-section img {
    filter: brightness(0.84) saturate(0.94) blur(1.35px) !important;
    transform: scale(1.018) !important;
    transform-origin: center center !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list {
    grid-template-columns: repeat(2, 146px) !important;
    grid-auto-rows: 146px !important;
    gap: 16px !important;
    width: 308px !important;
    max-width: 308px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 146px !important;
    min-width: 146px !important;
    max-width: 146px !important;
    height: 146px !important;
    min-height: 146px !important;
    aspect-ratio: 1 / 1 !important;
    padding: 18px 14px !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-slide-list) .cosj-slide-list .icon p {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 30px !important;
    margin: 0 !important;
  }
}

@media (max-width: 991px) {
  body.cosj-home .cosj-mobile-hero-shell {
    padding: 12px 0 22px !important;
  }

  body.cosj-home .cosj-mobile-hero-carousel {
    min-height: 390px !important;
    border-radius: 26px !important;
    box-shadow: 0 20px 40px rgba(16, 34, 66, 0.14) !important;
  }

  body.cosj-home .cosj-mobile-hero-slide {
    align-items: center !important;
    background:
      linear-gradient(180deg, rgba(10, 18, 32, 0.18), rgba(10, 18, 32, 0.42)),
      var(--cosj-mobile-bg) center center / cover no-repeat !important;
  }

  body.cosj-home .cosj-mobile-hero-slide__overlay {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px 16px 52px !important;
  }

  body.cosj-home .cosj-mobile-hero__copy,
  body.cosj-home .cosj-mobile-hero__copy--compact {
    max-width: 316px !important;
    padding: 20px 18px 18px !important;
    border-radius: 26px !important;
    background: rgba(32, 60, 115, 0.82) !important;
    box-shadow: 0 18px 32px rgba(16, 34, 66, 0.16) !important;
  }

  body.cosj-home .cosj-mobile-hero__title,
  body.cosj-home .cosj-mobile-hero__title--medium {
    margin-top: 10px !important;
    font-size: clamp(1.92rem, 6.8vw, 2.46rem) !important;
    line-height: 1.06 !important;
  }

  body.cosj-home .cosj-mobile-hero__title--medium {
    font-size: clamp(1.62rem, 5.9vw, 2.04rem) !important;
  }

  body.cosj-home .cosj-mobile-hero__text {
    max-width: 220px !important;
    margin: 12px auto 0 !important;
    font-size: 12px !important;
    line-height: 1.38 !important;
  }

  body.cosj-home .cosj-mobile-hero__tags {
    max-width: 242px !important;
    gap: 8px 10px !important;
    margin: 14px auto 0 !important;
  }

  body.cosj-home .cosj-mobile-hero__tags span {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:first-child .cosj-mobile-hero__tags span:nth-child(n+4) {
    display: none !important;
  }

  body.cosj-home .cosj-mobile-hero__icons {
    gap: 12px !important;
    margin-top: 16px !important;
  }

  body.cosj-home .cosj-mobile-hero__icon {
    min-height: 96px !important;
    padding: 14px 10px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.11) !important;
  }

  body.cosj-home .cosj-mobile-hero__icon span {
    max-width: 72px !important;
  }

  body.cosj-home .cosj-mobile-hero__dots {
    bottom: 16px !important;
    gap: 7px !important;
  }

  body.cosj-home .cosj-mobile-hero__dots button {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.42) !important;
  }

  body.cosj-home .cosj-mobile-hero__dots button.is-active {
    width: 26px !important;
    height: 8px !important;
  }

  body.cosj-home #Departamentos-2 {
    padding-top: 26px !important;
  }
}

@media (max-width: 575px) {
  body.cosj-home .cosj-mobile-hero-shell {
    padding: 10px 0 18px !important;
  }

  body.cosj-home .cosj-mobile-hero-carousel {
    min-height: 356px !important;
    border-radius: 22px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide__overlay {
    padding: 18px 14px 46px !important;
  }

  body.cosj-home .cosj-mobile-hero__copy,
  body.cosj-home .cosj-mobile-hero__copy--compact {
    max-width: 286px !important;
    padding: 18px 16px 16px !important;
    border-radius: 22px !important;
  }

  body.cosj-home .cosj-mobile-hero__eyebrow {
    font-size: 10px !important;
    padding: 6px 10px !important;
  }

  body.cosj-home .cosj-mobile-hero__title,
  body.cosj-home .cosj-mobile-hero__title--medium {
    font-size: clamp(1.58rem, 8vw, 2.12rem) !important;
  }

  body.cosj-home .cosj-mobile-hero__title--medium {
    font-size: clamp(1.42rem, 6.6vw, 1.82rem) !important;
  }

  body.cosj-home .cosj-mobile-hero__tags {
    max-width: 214px !important;
  }

  body.cosj-home .cosj-mobile-hero__tags span {
    padding: 7px 11px !important;
    font-size: 11px !important;
  }

  body.cosj-home .cosj-mobile-hero__text {
    max-width: 208px !important;
    font-size: 11.5px !important;
  }

  body.cosj-home .cosj-mobile-hero__icon {
    min-height: 90px !important;
    padding: 13px 9px !important;
    border-radius: 16px !important;
  }

  body.cosj-home .cosj-mobile-hero__icon i {
    width: 38px !important;
    height: 38px !important;
    font-size: 20px !important;
  }

  body.cosj-home .cosj-mobile-hero__icon span {
    max-width: 68px !important;
    font-size: 10.5px !important;
    line-height: 1.12 !important;
  }
}

@media (max-width: 991px) {
  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__copy--compact {
    max-width: 304px !important;
    padding-top: 18px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__title--medium {
    font-size: clamp(1.48rem, 5.6vw, 1.92rem) !important;
    line-height: 1.08 !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__icons {
    gap: 10px !important;
    margin-top: 14px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__icon {
    min-height: 92px !important;
  }
}

@media (max-width: 575px) {
  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__copy--compact {
    max-width: 276px !important;
    padding: 16px 14px 14px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__title--medium {
    font-size: clamp(1.32rem, 6vw, 1.66rem) !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__icon {
    min-height: 84px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__icon i {
    width: 34px !important;
    height: 34px !important;
    font-size: 18px !important;
  }
}

/* 2026-05-01: refinado visual mobile hero */
@media (max-width: 991px) {
  body.cosj-home .cosj-mobile-hero-carousel {
    background: #cfd8e3 !important;
  }

  body.cosj-home .cosj-mobile-hero-slide {
    isolation: isolate !important;
    align-items: stretch !important;
    background: none !important;
  }

  body.cosj-home .cosj-mobile-hero-slide::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background:
      linear-gradient(180deg, rgba(6, 12, 24, 0.18) 0%, rgba(6, 12, 24, 0.46) 100%),
      var(--cosj-mobile-bg) center center / cover no-repeat !important;
    filter: brightness(0.84) saturate(0.96) !important;
  }

  body.cosj-home .cosj-mobile-hero-slide__overlay {
    position: relative !important;
    z-index: 1 !important;
    min-height: 100% !important;
    padding: 22px 16px 50px !important;
  }

  body.cosj-home .cosj-mobile-hero__copy,
  body.cosj-home .cosj-mobile-hero__copy--compact {
    background: rgba(50, 78, 128, 0.88) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(1) .cosj-mobile-hero__copy {
    max-width: 288px !important;
    padding-top: 15px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(1) .cosj-mobile-hero__eyebrow {
    margin-bottom: 14px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(1) .cosj-mobile-hero__title {
    max-width: 218px !important;
    margin: 0 auto !important;
    font-size: clamp(1.44rem, 5.6vw, 1.88rem) !important;
    line-height: 1.06 !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(1) .cosj-mobile-hero__tags {
    margin-top: 18px !important;
    max-width: 210px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(2) .cosj-mobile-hero__copy--compact {
    max-width: 286px !important;
    padding-top: 18px !important;
    background: rgba(50, 78, 128, 0.9) !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(2) .cosj-mobile-hero__eyebrow {
    margin-bottom: 16px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(2) .cosj-mobile-hero__title--medium {
    max-width: 228px !important;
    margin: 0 auto !important;
    font-size: clamp(1.66rem, 6.1vw, 2.08rem) !important;
    line-height: 0.98 !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(2) .cosj-mobile-hero__text {
    max-width: 232px !important;
    margin-top: 20px !important;
    font-size: 13.5px !important;
    line-height: 1.38 !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__eyebrow {
    margin-bottom: 14px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__title--medium {
    margin-top: 0 !important;
  }
}

@media (max-width: 575px) {
  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(1) .cosj-mobile-hero__copy {
    max-width: 270px !important;
    padding-top: 13px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(1) .cosj-mobile-hero__title {
    max-width: 204px !important;
    font-size: clamp(1.34rem, 6.6vw, 1.7rem) !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(1) .cosj-mobile-hero__tags {
    margin-top: 18px !important;
    max-width: 194px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(2) .cosj-mobile-hero__copy--compact {
    max-width: 268px !important;
    padding-top: 16px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(2) .cosj-mobile-hero__eyebrow,
  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__eyebrow {
    margin-bottom: 12px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(2) .cosj-mobile-hero__title--medium {
    max-width: 212px !important;
    font-size: clamp(1.5rem, 6.6vw, 1.84rem) !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(2) .cosj-mobile-hero__text {
    max-width: 214px !important;
    margin-top: 18px !important;
    font-size: 12.8px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) .cosj-mobile-hero__title--medium {
    font-size: clamp(1.26rem, 5.8vw, 1.56rem) !important;
  }
}

/* // CAMBIO AQUÍ: alejar apenas solo fondo del slide beneficios sin dejar bordes */
@media (min-width: 992px) {
  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap),
  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) > .bg-section {
    background-size: cover !important;
    background-position: center 35% !important;
  }

  body.cosj-home #slider-2 .slide:has(.cosj-benefits-wrap) > .bg-section img {
    width: 80% !important;
    height: 80% !important;
    object-fit: cover !important;
    object-position: center 33% !important;
    transform: scale(1) !important;
  }
}

/* // CAMBIO AQUÍ: rehacer hero mobile con imágenes completas y ajustar chatbot */
@media (max-width: 991px) {
  body.cosj-home .cosj-mobile-hero-shell {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    overflow: hidden !important;
  }

  body.cosj-home .cosj-mobile-hero-shell .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.cosj-home .cosj-mobile-hero-carousel {
    position: relative !important;
    width: 100% !important;
    min-height: 430px !important;
    border-radius: 0 !important;
    background: #111827 !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  body.cosj-home .cosj-mobile-hero-slide {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
    background: none !important;
    isolation: isolate !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(1) {
    --cosj-mobile-bg: url("../images/sliders/1.jpg") !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(2) {
    --cosj-mobile-bg: url("../images/sliders/2.jpg") !important;
  }

  body.cosj-home .cosj-mobile-hero-slide:nth-of-type(3) {
    --cosj-mobile-bg: url("../images/sliders/3.jpg") !important;
  }

  body.cosj-home .cosj-mobile-hero-slide::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image: var(--cosj-mobile-bg) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    filter: brightness(0.78) saturate(0.98) !important;
    transform: none !important;
  }

  body.cosj-home .cosj-mobile-hero-slide::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
      linear-gradient(180deg, rgba(8, 16, 32, 0.22) 0%, rgba(8, 16, 32, 0.58) 100%),
      radial-gradient(circle at center, rgba(32, 60, 115, 0.06), rgba(8, 16, 32, 0.34)) !important;
    pointer-events: none !important;
  }

  body.cosj-home .cosj-mobile-hero-slide__overlay {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 430px !important;
    padding: 34px 18px 58px !important;
  }

  body.cosj-home .cosj-mobile-hero__copy,
  body.cosj-home .cosj-mobile-hero__copy--compact {
    width: min(84vw, 318px) !important;
    max-width: 318px !important;
    margin: 0 auto !important;
    padding: 20px 18px 22px !important;
    border-radius: 26px !important;
    background: rgba(32, 60, 115, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  body.cosj-home .cosj-mobile-hero__title,
  body.cosj-home .cosj-mobile-hero__title--medium {
    color: #ffffff !important;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.18) !important;
  }

  body.cosj-home .cosj-mobile-hero__dots {
    bottom: 18px !important;
    z-index: 4 !important;
  }

  body.cosj-home .cosj-chatbot {
    right: 14px !important;
    bottom: 82px !important;
    z-index: 1090 !important;
  }

  body.cosj-home .cosj-chatbot__launcher {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    padding: 7px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: var(--cosj-primary) !important;
    border: 1px solid rgba(32, 60, 115, 0.1) !important;
    box-shadow: 0 14px 30px rgba(16, 34, 66, 0.16) !important;
  }

  body.cosj-home .cosj-chatbot__launcher-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--cosj-primary), var(--cosj-accent)) !important;
    color: #ffffff !important;
  }

  body.cosj-home .cosj-chatbot__launcher-text {
    display: none !important;
  }

  body.cosj-home .cosj-chatbot__panel {
    right: 0 !important;
    bottom: 66px !important;
    width: calc(100vw - 28px) !important;
    max-height: 68vh !important;
    border-radius: 24px !important;
  }

  body.cosj-home #Departamentos-2 {
    padding-top: 34px !important;
  }
}

@media (max-width: 575px) {
  body.cosj-home .cosj-mobile-hero-carousel {
    min-height: 390px !important;
  }

  body.cosj-home .cosj-mobile-hero-slide__overlay {
    min-height: 390px !important;
    padding: 28px 16px 52px !important;
  }

  body.cosj-home .cosj-mobile-hero__copy,
  body.cosj-home .cosj-mobile-hero__copy--compact {
    width: min(84vw, 290px) !important;
    max-width: 290px !important;
    padding: 18px 16px 20px !important;
    border-radius: 24px !important;
  }

  body.cosj-home .cosj-chatbot {
    right: 14px !important;
    bottom: 78px !important;
  }
}

/* // CAMBIO AQUÍ: ajustar banner curso resinas nuevo con sponsors sin cortar ni estirar */
@media (min-width: 992px) {
  body.cosj-home #slider-2:has(.owl-item.active img[src*="curso-resinas-anteriores"]),
  body.cosj-home #slider-2 .slider-carousel:has(.owl-item.active img[src*="curso-resinas-anteriores"]),
  body.cosj-home #slider-2 .owl-stage-outer:has(.owl-item.active img[src*="curso-resinas-anteriores"]),
  body.cosj-home #slider-2 .owl-stage:has(.owl-item.active img[src*="curso-resinas-anteriores"]),
  body.cosj-home #slider-2 .owl-item.active:has(img[src*="curso-resinas-anteriores"]),
  body.cosj-home #slider-2 .slide:has(img[src*="curso-resinas-anteriores"]) {
    height: clamp(390px, 38.1vw, 610px) !important;
    min-height: clamp(390px, 38.1vw, 610px) !important;
    max-height: 610px !important;
    overflow: hidden !important;
    background: #ffffff !important;
  }

  body.cosj-home #slider-2 .slide:has(img[src*="curso-resinas-anteriores"]) {
    background: #ffffff !important;
    background-position: center center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }

  body.cosj-home #slider-2 .slide:has(img[src*="curso-resinas-anteriores"]) > .bg-section {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #ffffff !important;
    background-position: center center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }

  body.cosj-home #slider-2 .slide:has(img[src*="curso-resinas-anteriores"]) > .bg-section img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    filter: none !important;
    transform: none !important;
    transform-origin: center center !important;
    background: #ffffff !important;
  }

  body.cosj-home #slider-2 .slide:has(img[src*="curso-resinas-anteriores"])::before {
    display: none !important;
    content: none !important;
  }

  body.cosj-home #slider-2 .slide:has(img[src*="curso-resinas-anteriores"]) > .container,
  body.cosj-home #slider-2 .slide:has(img[src*="curso-resinas-anteriores"]) .slide-content {
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    padding: 0 !important;
  }
}