:root {
  --sen-primary: #0071cd;
  --sen-secondary: #019fd9;
  --sen-dark: #022d58;
  --sen-light: #f4fbff;
  --sen-text: #1d2b3a;
  --sen-muted: #607287;
  --sen-border: rgba(2, 45, 88, 0.12);
  --sen-shadow: 0 20px 45px rgba(2, 45, 88, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: var(--sen-text);
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
.container {
  width: min(100% - 1.5rem, 1200px);
}
/*=================================================
NAVBAR
=================================================*/

.sen-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  /* Blanco al inicio */
  background: #ffffff;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    padding 0.35s ease;

  padding: 14px 0;
}

/* Cuando hace scroll */

.sen-navbar.scrolled {
  background: rgba(2, 45, 88, 0.88);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);

  padding: 10px 0;
}

/* Links */

.sen-navbar .nav-link {
  color: var(--sen-dark);

  font-weight: 600;

  font-size: 0.95rem;

  padding: 0.75rem 1rem;

  transition: all 0.3s ease;
}

.sen-navbar .nav-link:hover {
  color: var(--sen-primary);
}

/* Links en scroll */

.sen-navbar.scrolled .nav-link {
  color: #fff;
}

.sen-navbar.scrolled .nav-link:hover {
  color: #8bdcff;
}

/* Botón */

.sen-navbar .btn-sen {
  transition: all 0.3s ease;
}

.sen-navbar.scrolled .btn-sen {
  background: var(--sen-primary);

  border-color: var(--sen-primary);

  color: #fff;
}

/* Logo */

.brand-logo {
  height: 62px;

  transition: all 0.35s ease;
}

.sen-navbar.scrolled .brand-logo {
  height: 56px;
}
.sen-navbar .nav-link:hover,
.sen-navbar .nav-link:focus {
  color: #019fd9;
}
.brand-logo {
  width: auto;
  height: 65px;
  max-width: 220px;
  object-fit: contain;
  border-radius: 8px;
}
.navbar-toggler {
  border-color: #022d58 ;
}
.navbar-toggler{
  color: #fff;
  background-color:#022d58 ;
}
.btn-sen {
  --bs-btn-bg: var(--sen-primary);
  --bs-btn-border-color: var(--sen-primary);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #005da9;
  --bs-btn-hover-border-color: #005da9;
  --bs-btn-hover-color: #fff;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.8rem 1.3rem;
  box-shadow: 0 10px 22px rgba(0, 113, 205, 0.25);
}
.btn-outline-sen {
  border: 1px solid var(--sen-primary);
  color: var(--sen-primary);
  border-radius: 999px;
  font-weight: 700;
  padding: 0.8rem 1.4rem;
}
.btn-outline-sen:hover {
  background: var(--sen-primary);
  color: #fff;
}
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 45, 88, 0.88) 0%,
      rgba(2, 45, 88, 0.55) 45%,
      rgba(2, 45, 88, 0.08) 100%
    ),
    url("../img/hero-comercializadora-sen.webp");
  background-size: cover;
  background-position: center right;
  isolation: isolate;
}
.hero-section:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, #fff);
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--sen-secondary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}
.hero-section h1 {
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  max-width: 850px;
}
.hero-section .lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  max-width: 720px;
  margin-top: 1.2rem;
}
.trust-strip {
  margin-top: -80px;
  position: relative;
  z-index: 3;
}
.trust-strip .container {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--sen-shadow);
  padding: 1.1rem;
}
.trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.9rem;
  align-items: center;
  padding: 1rem;
  border-radius: 18px;
  min-height: 115px;
}
.trust-card i {
  grid-row: span 2;
  color: var(--sen-primary);
  font-size: 2rem;
}
.trust-card strong {
  color: var(--sen-dark);
  font-size: 1rem;
}
.trust-card span {
  color: var(--sen-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.section-padding {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.bg-soft {
  background: linear-gradient(180deg, #f6fbff, #fff);
}
.section-heading {
  max-width: 760px;
}
h2 {
  color: var(--sen-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.14;
  font-weight: 800;
  margin-bottom: 1rem;
}
p {
  color: var(--sen-muted);
}
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.image-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--sen-shadow);
}
.image-grid .wide {
  grid-column: 1 / -1;
  height: 210px;
}
.mini-stat {
  border: 1px solid var(--sen-border);
  padding: 1.2rem;
  border-radius: 18px;
  background: #fff;
}
.mini-stat strong {
  display: block;
  color: var(--sen-primary);
  font-size: 2rem;
  line-height: 1;
}
.mini-stat span {
  color: var(--sen-muted);
  font-weight: 600;
}
.service-card {
  background: #fff;
  border: 1px solid var(--sen-border);
  border-radius: 24px;
  padding: 1.5rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sen-shadow);
  border-color: rgba(0, 113, 205, 0.25);
}
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sen-primary), var(--sen-secondary));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-size: 1.05rem;
  color: var(--sen-dark);
  font-weight: 800;
}
.service-card p {
  font-size: 0.93rem;
  margin-bottom: 0;
}
.extra-card {
  height: 100%;
  background: #fff;
  border: 1px dashed rgba(0, 113, 205, 0.35);
  border-radius: 18px;
  padding: 1rem;
  color: var(--sen-dark);
  font-weight: 700;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.sector-grid div {
  background: linear-gradient(135deg, #fff, #f0f9ff);
  border: 1px solid var(--sen-border);
  border-radius: 22px;
  padding: 2rem 1rem;
  text-align: center;
  font-weight: 800;
  color: var(--sen-dark);
  box-shadow: 0 10px 25px rgba(2, 45, 88, 0.06);
}
.commitment-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    linear-gradient(135deg, rgba(2, 45, 88, 0.96), rgba(0, 113, 205, 0.92)),
    url("../img/calidad-cumplimiento.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.commitment-section h2,
.commitment-section p {
  color: #fff;
}
.commitment-list {
  display: grid;
  gap: 1rem;
}
.commitment-list span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  font-weight: 700;
}
.commitment-list i {
  color: #83ddff;
  margin-right: 0.5rem;
}
.contact-info p {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.7rem;
  color: var(--sen-dark);
  font-weight: 600;
}
.contact-info i {
  color: var(--sen-primary);
}
.contact-form {
  background: #fff;
  border: 1px solid var(--sen-border);
  box-shadow: var(--sen-shadow);
  border-radius: 28px;
  padding: clamp(1.2rem, 4vw, 2.4rem);
}
.form-control,
.form-select {
  border-radius: 14px;
  border-color: rgba(2, 45, 88, 0.18);
  padding: 0.85rem 1rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--sen-primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 113, 205, 0.15);
}
.form-label {
  font-weight: 700;
  color: var(--sen-dark);
}
.site-footer {
  background: var(--sen-dark);
  color: #fff;
  padding: 3rem 0 1.5rem;
}
.site-footer p {
  color: rgba(255, 255, 255, 0.74);
}
.footer-logo {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  margin-left: 1.3rem;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer hr {
  border-color: rgba(255, 255, 255, 0.16);
  margin: 2rem 0 1rem;
}
@media (max-width: 1199.98px) {
  .hero-section {
    background-position: 58% center;
  }
  .hero-section h1 {
    max-width: 720px;
  }
}
@media (max-width: 991.98px) {
  .sen-navbar {
    background: #ffffff;
  }

  .sen-navbar.scrolled {
    background: rgba(2, 45, 88, 0.92);
  }

  .navbar-collapse {
    background: #ffffff;

    margin-top: 12px;

    border-radius: 18px;

    padding: 18px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .sen-navbar.scrolled .navbar-collapse {
    background: #fff;
  }
}
@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 78px;
  }
  .brand-logo {
    height: 44px;
  }
  .hero-section {
    background-image:
      linear-gradient(
        180deg,
        rgba(2, 45, 88, 0.94) 0%,
        rgba(2, 45, 88, 0.78) 55%,
        rgba(2, 45, 88, 0.35) 100%
      ),
      url("../img/hero-comercializadora-sen.webp");
    background-position: 65% center;
  }
  .hero-section .row {
    min-height: 690px;
    padding-top: 7rem !important;
  }
  .hero-section h1 {
    font-size: 2.45rem;
  }
  .hero-section .lead {
    font-size: 1rem;
  }
  .trust-card {
    grid-template-columns: 1fr;
    text-align: center;
    place-items: center;
    min-height: 145px;
    padding: 0.9rem;
  }
  .trust-card i {
    grid-row: auto;
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
  .image-grid img,
  .image-grid .wide {
    height: 210px;
    grid-column: auto;
  }
  .sector-grid {
    grid-template-columns: 1fr;
  }
  .section-padding {
    padding: 4rem 0;
  }
  .contact-form {
    border-radius: 22px;
  }
  .btn-lg {
    font-size: 1rem;
    padding: 0.8rem 1.1rem;
  }
}
@media (max-width: 420px) {
  .container {
    width: min(100% - 1rem, 1200px);
  }
  .hero-section h1 {
    font-size: 2.05rem;
  }
  .trust-strip .container {
    padding: 0.7rem;
    border-radius: 20px;
  }
  .service-card {
    padding: 1.2rem;
  }
  .sector-grid div {
    padding: 1.4rem 0.8rem;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
  }
  .hero-section h1 {
    font-size: 5.4rem;
  }
}

/* ================================================
QUIENES SOMOS
================================================ */

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

.about-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 45, 88, 0.16);
}

.about-image-wrap img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 45, 88, 0.05),
    rgba(2, 45, 88, 0.35)
  );
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 250px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.about-badge strong {
  display: block;
  color: #022d58;
  font-size: 2rem;
  line-height: 1;
}

.about-badge span {
  display: block;
  margin-top: 6px;
  color: #5f6f7f;
  font-size: 0.95rem;
}

.about-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-pill {
  display: flex;
  gap: 16px;
  height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(2, 45, 88, 0.08);
  box-shadow: 0 16px 40px rgba(2, 45, 88, 0.08);
}

.about-pill i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #022d58, #0071cd);
}

.about-pill h3 {
  margin-bottom: 8px;
  color: #022d58;
  font-size: 1.15rem;
  font-weight: 700;
}

.about-pill p {
  margin: 0;
  font-size: 0.95rem;
}

.values-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.values-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(1, 159, 217, 0.08);
  color: #022d58;
  font-size: 0.92rem;
  font-weight: 600;
}

.values-strip i {
  color: #019fd9;
  margin-right: 6px;
}

@media (max-width: 991px) {
  .about-image-wrap img {
    min-height: 380px;
  }

  .about-pill-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================================
BOTON FLOTANTE WHATSAPP
================================================ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 58px;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--sen-dark),
    var(--sen-primary) 62%,
    var(--sen-secondary)
  );
  box-shadow: 0 18px 38px rgba(2, 45, 88, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.whatsapp-float i {
  font-size: 1.55rem;
  line-height: 1;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(2, 45, 88, 0.34);
  filter: saturate(1.08);
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--sen-primary);
}

/* ================================================
ANIMACIONES DISCRETAS AL HACER SCROLL
================================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-on-scroll.reveal-delay-2 {
  transition-delay: 0.14s;
}
.reveal-on-scroll.reveal-delay-3 {
  transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .whatsapp-float {
    transition: none;
  }
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-width: 56px;
    width: 56px;
    height: 56px;
    padding: 0;
  }

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

.about-pill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.about-pill {
  display: flex;
  gap: 18px;
  height: 100%;
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(2, 45, 88, 0.08);
  box-shadow: 0 16px 40px rgba(2, 45, 88, 0.08);
}

.about-pill p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (min-width: 1200px) {
  .about-pill-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*=========================================================
MISION Y VISION
=========================================================*/

.mv-block {
  display: flex;

  gap: 26px;

  align-items: flex-start;

  padding: 30px;

  border-radius: 26px;

  background: #fff;

  border: 1px solid rgba(2, 45, 88, 0.08);

  box-shadow: 0 18px 45px rgba(2, 45, 88, 0.08);

  transition: 0.35s;
}

.mv-block:hover {
  transform: translateY(-4px);

  box-shadow: 0 28px 60px rgba(2, 45, 88, 0.12);
}

.mv-icon {
  width: 72px;

  height: 72px;

  flex: 0 0 72px;

  border-radius: 22px;

  display: grid;

  place-items: center;

  background: linear-gradient(135deg, var(--sen-dark), var(--sen-primary));

  color: #fff;

  font-size: 1.6rem;
}

.mv-content {
  flex: 1;
}

.mv-label {
  display: inline-block;

  margin-bottom: 6px;

  color: var(--sen-secondary);

  font-size: 0.82rem;

  font-weight: 800;

  letter-spacing: 0.12em;
}

.mv-content h3 {
  color: var(--sen-dark);

  font-size: 1.6rem;

  font-weight: 800;

  margin-bottom: 14px;
}

.mv-content p {
  line-height: 1.85;

  margin-bottom: 12px;

  color: #5d7086;
}

@media (max-width: 768px) {
  .mv-block {
    flex-direction: column;

    padding: 24px;
  }

  .mv-icon {
    width: 60px;

    height: 60px;

    font-size: 1.3rem;
  }
}

.about-corporate-row {
  position: relative;
}

.corporate-card {
  height: 100%;
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(2, 45, 88, 0.1);
  box-shadow: 0 18px 45px rgba(2, 45, 88, 0.08);
}

.corporate-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  color: #fff;
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--sen-dark), var(--sen-primary));
}

.corporate-card h3 {
  color: var(--sen-dark);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.corporate-card p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.values-list {
  display: flex;
  justify-content:center;
  /* gap: 10px; */
}

.values-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(1, 159, 217, 0.08);
  color: var(--sen-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.values-list i {
  color: var(--sen-secondary);
}


.values-list{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:10px;
}

.values-list span{
    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    background:rgba(1,159,217,.08);

    border:1px solid rgba(1,159,217,.15);

    border-radius:50px;

    color:var(--sen-dark);

    font-weight:600;

    transition:.25s ease;
}

.values-list span:hover{

    background:var(--sen-primary);

    color:#fff;

    transform:translateY(-2px);

}

.values-list span:hover i{

    color:#fff;

}

.values-list i{

    color:var(--sen-secondary);

    font-size:.85rem;

}
/* ==========================
   Selector profesional ES / 中文
========================== */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 7px;
  border-radius: 999px;
  background: #022d58 ;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.sen-navbar.scrolled .language-switch,
.sen-navbar.shadow-sm .language-switch {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(2, 45, 88, 0.12);
}

.language-switch span {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.sen-navbar.scrolled .language-switch span,
.sen-navbar.shadow-sm .language-switch span {
  color: rgba(2, 45, 88, 0.35);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  background: transparent;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.22s ease;
}

.sen-navbar.scrolled .lang-btn,
.sen-navbar.shadow-sm .lang-btn {
  color: var(--sen-dark);
}

.lang-btn.active {
  background: #fff;
  color: var(--sen-dark);
  box-shadow: 0 8px 18px rgba(2, 45, 88, 0.12);
}

.sen-navbar.scrolled .lang-btn.active,
.sen-navbar.shadow-sm .lang-btn.active {
  background: var(--sen-primary);
  color: #fff;
}

.lang-btn:hover {
  transform: translateY(-1px);
}

body.lang-zh {
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

body.lang-zh h1,
body.lang-zh h2,
body.lang-zh h3,
body.lang-zh .btn,
body.lang-zh .nav-link,
body.lang-zh .lang-btn {
  letter-spacing: 0;
}

body.lang-zh .service-card p,
body.lang-zh .corporate-card p,
body.lang-zh .lead {
  line-height: 1.85;
}

@media (max-width: 991px) {
  .language-switch {
    margin: 10px 0;
    width: max-content;
    background: rgba(2, 45, 88, 0.06);
    border-color: rgba(2, 45, 88, 0.12);
  }

  .language-switch span {
    color: rgba(2, 45, 88, 0.35);
  }

  .lang-btn {
    color: var(--sen-dark);
  }

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