/* ============================= */
/* VARIABLES GENERALES */
/* ============================= */

:root {
  --color-primary: #0B1F3A;
  --color-primary-dark: #07162A;
  --color-dark: #111111;
  --color-black: #050505;
  --color-text: #1d1d1f;
  --color-muted: #666666;
  --color-light: #f8f8f8;
  --color-white: #ffffff;
  --color-border: #e8e8e8;

  --font-main: "Inter", sans-serif;
  --font-title: "Playfair Display", serif;

  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 8px 26px rgba(0, 0, 0, 0.06);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --transition: all 0.3s ease;
}


/* ============================= */
/* RESET */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--color-white);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}


/* ============================= */
/* BOTONES */
/* ============================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 24px;
  border-radius: 8px;

  font-size: 14px;
  font-weight: 700;

  transition: var(--transition);
  cursor: pointer;
}

.btn--small {
  padding: 11px 20px;
  font-size: 13px;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-black);
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.28);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-white);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-black);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


/* ============================= */
/* HEADER */
/* ============================= */

.header {
  width: 100%;
  height: 74px;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid var(--color-border);

  position: sticky;
  top: 0;
  z-index: 100;
}

.header__container {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__icon {
  width: 34px;
  height: 34px;

  background: linear-gradient(135deg, var(--color-primary), #1E4C7A);
  border-radius: 9px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 900;
  color: var(--color-black);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo__text strong {
  font-size: 20px;
  font-family: var(--font-title);
  color: var(--color-dark);
}

.logo__text span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--color-primary-dark);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  position: relative;
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-primary-dark);
}

.nav__link.active::after {
  content: "";
  width: 6px;
  height: 6px;

  background: var(--color-primary);
  border-radius: 50%;

  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
}

.menu-btn {
  display: none;
  font-size: 24px;
  color: var(--color-dark);
}


/* ============================= */
/* HERO PROCESO */
/* ============================= */

.page-hero {
  padding: 90px 0;

  background:
    radial-gradient(circle at right center, rgba(11, 31, 58, 0.16), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);

  overflow: hidden;
}

.page-hero__container {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 15px;

  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-hero h1 {
  max-width: 760px;

  font-family: var(--font-title);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.03;
  color: var(--color-black);

  margin-bottom: 24px;
}

.page-hero p {
  max-width: 650px;
  color: var(--color-muted);
  font-size: 17px;
  margin-bottom: 30px;
}

.page-hero__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.page-hero__visual {
  min-height: 450px;
  position: relative;
}

.page-hero__visual::before {
  content: "";
  width: 430px;
  height: 430px;

  background: radial-gradient(circle, rgba(11, 31, 58, 0.24), transparent 62%);
  border-radius: 50%;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* ============================= */
/* TARJETA HERO */
/* ============================= */

.process-hero-card {
  width: 370px;
  min-height: 310px;

  position: absolute;
  top: 55px;
  right: 35px;

  padding: 36px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);

  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-soft);
}

.process-hero-card__icon {
  width: 68px;
  height: 68px;

  margin-bottom: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(11, 31, 58, 0.14);
  color: var(--color-primary-dark);

  border-radius: 18px;
  font-size: 28px;
}

.process-hero-card h3 {
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1.1;
  color: var(--color-dark);

  margin-bottom: 14px;
}

.process-hero-card p {
  font-size: 15px;
  margin-bottom: 25px;
}

.process-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.process-progress span {
  height: 8px;
  border-radius: 999px;
  background: var(--color-primary);
}

.process-progress span:nth-child(2) {
  opacity: 0.75;
}

.process-progress span:nth-child(3) {
  opacity: 0.5;
}

.process-progress span:nth-child(4) {
  opacity: 0.25;
}

.floating-step {
  position: absolute;

  width: 155px;
  padding: 20px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);

  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);

  box-shadow: var(--shadow-soft);
  text-align: center;
}

.floating-step strong {
  display: block;

  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1;

  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.floating-step span {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-dark);
}

.floating-step--one {
  left: 0;
  top: 45px;
}

.floating-step--two {
  left: 45px;
  bottom: 55px;
}

.floating-step--three {
  right: 0;
  bottom: 20px;
}


/* ============================= */
/* HEADERS DE SECCIÓN */
/* ============================= */

.section-header {
  margin-bottom: 55px;
}

.section-header--center {
  text-align: center;
}

.section-header h2,
.methodology__content h2,
.faq-section__content h2,
.final-cta__text h2 {
  font-family: var(--font-title);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.1;
  color: var(--color-dark);
}

.section-header p {
  max-width: 670px;
  margin: 18px auto 0;
  color: var(--color-muted);
  font-size: 16px;
}


/* ============================= */
/* TIMELINE DEL PROCESO */
/* ============================= */

.process-steps-section {
  background: #fcfcfc;
}

.process-timeline {
  position: relative;

  display: grid;
  gap: 34px;
}

.process-timeline::before {
  content: "";

  width: 2px;
  height: 100%;

  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.2),
    rgba(11, 31, 58, 0.95),
    rgba(11, 31, 58, 0.2)
  );

  position: absolute;
  left: 50px;
  top: 0;
}

.timeline-item {
  position: relative;

  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
}

.timeline-item__number {
  width: 100px;
  height: 100px;

  background: var(--color-white);
  border: 1px solid rgba(11, 31, 58, 0.45);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary-dark);

  box-shadow: var(--shadow-card);
  z-index: 2;
}

.timeline-item__content {
  padding: 34px;

  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);

  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.timeline-item__content:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(11, 31, 58, 0.45);
}

.timeline-item__icon {
  width: 58px;
  height: 58px;

  margin-bottom: 20px;

  background: rgba(11, 31, 58, 0.13);
  color: var(--color-primary-dark);

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 23px;
}

.timeline-item__tag {
  display: inline-block;
  margin-bottom: 8px;

  font-size: 12px;
  font-weight: 900;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-item__content h3 {
  font-size: 26px;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.timeline-item__content p {
  color: var(--color-muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.timeline-item__content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.timeline-item__content li {
  position: relative;
  padding-left: 24px;

  font-size: 14px;
  color: var(--color-text);
}

.timeline-item__content li::before {
  content: "✓";

  width: 16px;
  height: 16px;

  background: rgba(11, 31, 58, 0.15);
  color: var(--color-primary-dark);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  font-weight: 900;

  position: absolute;
  left: 0;
  top: 3px;
}


/* ============================= */
/* METODOLOGÍA */
/* ============================= */

.methodology {
  background: var(--color-white);
}

.methodology__container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 60px;
}

.methodology__content p {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 16px;
}

.methodology__content .btn {
  margin-top: 30px;
}

.methodology__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.method-card {
  padding: 32px 28px;

  background: linear-gradient(180deg, #ffffff, #fafafa);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);

  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.method-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(11, 31, 58, 0.45);
}

.method-card i {
  width: 56px;
  height: 56px;

  margin-bottom: 22px;

  background: rgba(11, 31, 58, 0.13);
  color: var(--color-primary-dark);

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 23px;
}

.method-card h3 {
  font-size: 21px;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.method-card p {
  color: var(--color-muted);
  font-size: 14px;
}


/* ============================= */
/* ENTREGABLES */
/* ============================= */

.deliverables {
  background: #fcfcfc;
}

.deliverables__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.deliverable-card {
  padding: 32px 26px;

  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);

  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.deliverable-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(11, 31, 58, 0.45);
}

.deliverable-card__icon {
  width: 58px;
  height: 58px;

  margin-bottom: 22px;

  background: rgba(11, 31, 58, 0.13);
  color: var(--color-primary-dark);

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 23px;
}

.deliverable-card h3 {
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.deliverable-card p {
  color: var(--color-muted);
  font-size: 14px;
}


/* ============================= */
/* FAQ */
/* ============================= */

.faq-section {
  background: var(--color-white);
}

.faq-section__container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.faq-section__content p {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 16px;
}

.faq-list {
  padding: 34px;

  background: #fcfcfc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);

  box-shadow: var(--shadow-card);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item summary {
  list-style: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  font-size: 16px;
  font-weight: 800;
  color: var(--color-dark);

  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  font-size: 14px;
  color: var(--color-dark);
  transition: var(--transition);
}

.faq-item[open] summary i {
  transform: rotate(45deg);
  color: var(--color-primary-dark);
}

.faq-item p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--color-muted);
}


/* ============================= */
/* CTA FINAL */
/* ============================= */

.final-cta {
  padding: 0 0 70px;
  background: var(--color-white);
}

.final-cta__container {
  min-height: 120px;

  padding: 25px 34px;

  background: linear-gradient(135deg, #12345A, #0B1F3A);
  border-radius: var(--radius-md);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  box-shadow: 0 14px 40px rgba(11, 31, 58, 0.25);
}

.final-cta__icon {
  width: 72px;
  height: 72px;

  background: var(--color-white);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--color-primary-dark);
  font-size: 26px;
}

.final-cta__text {
  flex: 1;
}

.final-cta__text h2 {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 3px;
}

.final-cta__text p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
}


/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding-top: 58px;
}

.footer__container {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;

  padding-bottom: 45px;
}

.logo--footer .logo__text strong {
  color: var(--color-white);
}

.footer__brand p {
  margin: 20px 0;
  max-width: 300px;

  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 34px;
  height: 34px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--color-primary);
  color: var(--color-black);
  border-color: var(--color-primary);
}

.footer__column h3 {
  margin-bottom: 18px;

  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-white);
}

.footer__column a {
  display: block;
  margin-bottom: 10px;

  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);

  transition: var(--transition);
}

.footer__column a:hover {
  color: var(--color-primary);
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact i {
  color: var(--color-primary);
}

.footer__bottom {
  padding: 22px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.11);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__bottom p,
.footer__bottom a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom div {
  display: flex;
  gap: 22px;
}

.footer__bottom a:hover {
  color: var(--color-primary);
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1050px) {
  .header .btn--small {
    display: none;
  }

  .nav {
    gap: 22px;
  }

  .page-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero__buttons {
    justify-content: center;
  }

  .page-hero__visual {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }

  .methodology__container,
  .faq-section__container {
    grid-template-columns: 1fr;
  }

  .deliverables__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


@media (max-width: 850px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    top: 74px;
    right: -100%;

    width: 270px;
    height: calc(100vh - 74px);

    background: var(--color-white);
    border-left: 1px solid var(--color-border);
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.08);

    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    padding: 35px;

    transition: var(--transition);
  }

  .nav.nav--active {
    right: 0;
  }

  .nav__link.active::after {
    display: none;
  }

  .page-hero {
    padding: 65px 0;
  }

  .page-hero__visual {
    min-height: 390px;
  }

  .process-hero-card {
    width: 330px;
    right: 50%;
    transform: translateX(50%);
  }

  .floating-step--one {
    left: 0;
  }

  .floating-step--two {
    left: 20px;
  }

  .floating-step--three {
    right: 0;
  }

  .timeline-item__content ul {
    grid-template-columns: 1fr;
  }

  .methodology__grid {
    grid-template-columns: 1fr;
  }

  .final-cta__container {
    flex-direction: column;
    text-align: center;
  }

  .footer__container {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}


@media (max-width: 600px) {
  .section {
    padding: 65px 0;
  }

  .logo__text strong {
    font-size: 18px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .page-hero__buttons {
    flex-direction: column;
  }

  .page-hero__buttons .btn {
    width: 100%;
  }

  .page-hero__visual {
    min-height: auto;
    margin-top: 35px;
  }

  .page-hero__visual::before {
    width: 300px;
    height: 300px;
  }

  .process-hero-card,
  .floating-step {
    position: relative;
  }

  .process-hero-card,
  .floating-step--one,
  .floating-step--two,
  .floating-step--three {
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin-bottom: 18px;
  }

  .process-timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .timeline-item__number {
    width: 76px;
    height: 76px;
    font-size: 22px;
  }

  .timeline-item__content,
  .faq-list,
  .method-card,
  .deliverable-card {
    padding: 26px 22px;
  }

  .deliverables__grid {
    grid-template-columns: 1fr;
  }

  .final-cta__container {
    padding: 28px 22px;
  }

  .footer__container {
    grid-template-columns: 1fr;
  }

  .footer__bottom div {
    flex-direction: column;
    gap: 10px;
  }
}
/* ============================= */
/* TEXTO BLANCO EN FONDOS AZULES */
/* ============================= */

.btn--primary,
.btn--primary i {
  color: #ffffff;
}

.category-btn.active,
.category-btn.active i,
.category-btn:hover,
.category-btn:hover i {
  color: #ffffff;
}

.filter-btn.active,
.filter-btn.active i,
.filter-btn:hover,
.filter-btn:hover i {
  color: #ffffff;
}

.logo__icon {
  color: #ffffff;
}

.final-cta__container,
.final-cta__container h2,
.final-cta__container p,
.final-cta__container a,
.final-cta__container i {
  color: #ffffff;
}

.contact-social,
.contact-social h3,
.contact-social a,
.contact-social i {
  color: #ffffff;
}

.footer__social a:hover,
.footer__social a:hover i {
  color: #ffffff;
}

.custom-alert--success,
.custom-alert--success i {
  color: #ffffff;
}
/* ============================= */
/* CORRECCIÓN CTA FINAL AZUL MARINO */
/* ============================= */

.final-cta__container {
  background: linear-gradient(135deg, #12345A, #0B1F3A);
  color: #ffffff;
}

.final-cta__text h2,
.final-cta__text p {
  color: #ffffff;
}

.final-cta__icon {
  background: #ffffff;
  color: #0B1F3A;
}

.final-cta__icon i {
  color: #0B1F3A;
}

/* Botón blanco dentro del recuadro azul */
.final-cta__container .btn--light {
  background: #ffffff;
  color: #0B1F3A;
  font-weight: 800;
}

.final-cta__container .btn--light i {
  color: #0B1F3A;
}

.final-cta__container .btn--light:hover {
  background: #f3f6fb;
  color: #07162A;
}


/* ============================= */
/* CORRECCIÓN FOOTER AZUL MARINO */
/* ============================= */

.footer {
  background: #030712;
}

.footer__column h3 {
  color: #ffffff;
}

.footer__column a {
  color: rgba(255, 255, 255, 0.72);
}

.footer__column a:hover {
  color: #8FBCE6;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.72);
}

.logo--footer .logo__text strong {
  color: #ffffff;
}

.logo--footer .logo__text span {
  color: #8FBCE6;
}

.footer__contact i {
  color: #8FBCE6;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.85);
}

.footer__social a:hover {
  background: #0B1F3A;
  color: #ffffff;
  border-color: #0B1F3A;
}

.footer__bottom p,
.footer__bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer__bottom a:hover {
  color: #8FBCE6;
}
/* ============================= */
/* LOGO SOCIALITY WEBS MEJORADO */
/* ============================= */

.logo {
  gap: 12px;
}

.logo__icon {
  width: 42px;
  height: 42px;

  background: linear-gradient(135deg, #0B1F3A 0%, #12345A 55%, #8FBCE6 100%) !important;
  color: #ffffff !important;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0;
  font-weight: 900;

  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.25);

  position: relative;
  overflow: hidden;
}

.logo__icon::before {
  content: "S";
  font-size: 20px;
  font-weight: 900;
  font-family: var(--font-main);
  letter-spacing: -1px;
}

.logo__icon::after {
  content: "";
  width: 38px;
  height: 38px;

  position: absolute;
  top: -18px;
  right: -18px;

  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.logo__text strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo__text span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.2px;
}