/* ============================= */
/* 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;
}

.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 */
/* ============================= */

.hero {
  padding: 70px 0 55px;
  background:
    radial-gradient(circle at right top, rgba(11, 31, 58, 0.11), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.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;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  color: var(--color-black);
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--color-primary);
  font-style: italic;
}

.hero__text {
  max-width: 580px;
  color: var(--color-muted);
  font-size: 17px;
  margin-bottom: 30px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 45px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--color-border);
}

.stat:last-child {
  border-right: none;
}

.stat i {
  font-size: 24px;
  color: var(--color-primary);
}

.stat strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--color-dark);
}

.stat span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--color-muted);
}

.hero__image {
  position: relative;
}

.hero__image::before {
  content: "";
  width: 520px;
  height: 520px;

  background: radial-gradient(circle, rgba(11, 31, 58, 0.18), transparent 60%);
  border-radius: 50%;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero__mockup {
  position: relative;
  z-index: 1;

  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);

  box-shadow: var(--shadow-soft);
}

.hero__mockup img {
  border-radius: 20px;
}


/* ============================= */
/* HEADERS DE SECCIÓN */
/* ============================= */

.section-header {
  margin-bottom: 55px;
}

.section-header--center {
  text-align: center;
}

.section-header h2,
.section-side h2,
.about-box h2,
.testimonial-box h2,
.final-cta__text h2 {
  font-family: var(--font-title);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  color: var(--color-dark);
}

.section-side {
  align-self: start;
}


/* ============================= */
/* SERVICIOS */
/* ============================= */

.services {
  background: var(--color-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  min-height: 240px;

  padding: 32px 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(11, 31, 58, 0.45);
}

.service-card__icon {
  width: 58px;
  height: 58px;

  margin-bottom: 26px;

  background: rgba(11, 31, 58, 0.12);
  color: var(--color-primary-dark);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.service-card p {
  font-size: 14px;
  color: var(--color-muted);
}

.center-link {
  margin-top: 32px;
  text-align: center;
}

.center-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 800;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-dark);

  transition: var(--transition);
}

.center-link a i {
  color: var(--color-primary);
}

.center-link a:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}


/* ============================= */
/* PROYECTOS */
/* ============================= */

.projects {
  background: #fcfcfc;
}

.projects__container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 45px;
  align-items: center;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;

  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.project-card__image {
  height: 180px;
  overflow: hidden;
}

.project-card__image img {
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-card__image img {
  transform: scale(1.08);
}

.project-card__content {
  padding: 18px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.project-card__content h3 {
  font-size: 16px;
  color: var(--color-dark);
}

.project-card__content span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--color-muted);
}

.project-card__content a {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-dark);

  display: flex;
  align-items: center;
  gap: 6px;
}

.project-card__content a i {
  color: var(--color-primary);
}


/* ============================= */
/* SOBRE NOSOTROS + PROCESO */
/* ============================= */

.about-process {
  background: var(--color-white);
}

.about-process__container {
  display: grid;
  grid-template-columns: 0.85fr 1.45fr;
  gap: 50px;

  padding: 55px;

  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.about-box p {
  margin: 20px 0 24px;
  color: var(--color-muted);
  font-size: 15px;
}

.process-box {
  position: relative;
}

.process-steps {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;

  margin-top: 35px;
}

.process-steps::before {
  content: "";
  height: 1px;
  width: 78%;

  background: repeating-linear-gradient(
    to right,
    #cfcfcf 0,
    #cfcfcf 6px,
    transparent 6px,
    transparent 12px
  );

  position: absolute;
  top: 18px;
  left: 45px;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 38px;
  height: 38px;

  margin-bottom: 18px;

  background: var(--color-primary);
  color: var(--color-black);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 900;
}

.process-step h3 {
  font-size: 16px;
  margin-bottom: 7px;
  color: var(--color-dark);
}

.process-step p {
  font-size: 13px;
  color: var(--color-muted);
}


/* ============================= */
/* TESTIMONIOS + FAQ */
/* ============================= */

.testimonials-faq {
  background: #fcfcfc;
}

.testimonials-faq__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.testimonial-box,
.faq-box {
  min-height: 360px;
  padding: 36px;

  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);

  box-shadow: var(--shadow-card);
}

.testimonial-box h2 {
  margin-bottom: 25px;
}

.testimonial i {
  color: var(--color-primary);
  font-size: 26px;
  margin-bottom: 14px;
}

.testimonial p {
  font-size: 15px;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial__user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__user img {
  width: 54px;
  height: 54px;

  border-radius: 50%;
  object-fit: cover;
}

.testimonial__user strong {
  display: block;
  font-size: 14px;
  color: var(--color-dark);
}

.testimonial__user span {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
}

.testimonial__dots {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}

.testimonial__dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: #d9d9d9;
}

.testimonial__dots span.active {
  background: var(--color-primary);
}

.faq-list {
  display: grid;
  gap: 4px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}

.faq-item summary {
  list-style: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  font-size: 15px;
  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: #fcfcfc;
}

.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;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .stats {
    max-width: 760px;
    margin: 0 auto;
  }

  .projects__container {
    grid-template-columns: 1fr;
  }

  .section-side {
    text-align: center;
  }

  .about-process__container {
    grid-template-columns: 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;
  }

  .hero {
    padding-top: 50px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-right: none;
    justify-content: center;
  }

  .services__grid,
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .testimonials-faq__container {
    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;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__text {
    font-size: 15px;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stat {
    justify-content: flex-start;
    padding: 16px;

    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
  }

  .services__grid,
  .projects__grid {
    grid-template-columns: 1fr;
  }

  .about-process__container {
    padding: 30px 22px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .testimonial-box,
  .faq-box {
    padding: 28px 22px;
  }

  .project-card__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .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;
}
/* ============================= */
/* HERO IMAGEN MÁS GRANDE */
/* ============================= */

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  min-height: calc(100vh - 90px);
}

.hero__image,
.hero__visual {
  width: 100%;
  min-height: 560px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #0B1F3A, #07162A);
  border-radius: 32px;
  padding: 22px;

  box-shadow: 0 30px 80px rgba(11, 31, 58, 0.22);
}

.hero__image img,
.hero__visual img {
  width: 100%;
  height: 520px;

  object-fit: cover;
  object-position: center;

  border-radius: 24px;
  filter: saturate(0.9) contrast(1.04) brightness(0.92);
}
/* ============================= */
/* MEJORA SECCIÓN NUESTRO PROCESO */
/* ============================= */

.about-process {
  padding: 110px 0;
  background: #ffffff;
}

.about-process__container {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 70px;
  align-items: center;

  padding: 70px 56px;

  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid #e5e7eb;
  border-radius: 34px;

  box-shadow: 0 28px 80px rgba(11, 31, 58, 0.08);
}

.about-process__content h2 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.95;
  margin-bottom: 28px;
}

.about-process__content p {
  max-width: 430px;
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 30px;
}

.about-process__content .btn {
  padding: 16px 28px;
}


/* Lado derecho del proceso */

.process {
  width: 100%;
}

.process .section-tag {
  margin-bottom: 28px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.process-step {
  position: relative;

  padding: 34px 28px 30px;

  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;

  box-shadow: 0 14px 40px rgba(11, 31, 58, 0.08);

  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 31, 58, 0.3);
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.14);
}

.process-step span,
.process-step__number {
  width: 58px;
  height: 58px;

  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #0B1F3A;
  color: #ffffff;

  border-radius: 18px;

  font-size: 20px;
  font-weight: 900;

  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.25);
}

.process-step h3 {
  font-size: 22px;
  line-height: 1.2;
  color: #07162A;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}


/* Quitar líneas punteadas si aparecen feas */

.process-step::before,
.process-step::after {
  display: none;
}


/* Responsive */

@media (max-width: 1050px) {
  .about-process__container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-process__content {
    text-align: center;
  }

  .about-process__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .process .section-tag {
    text-align: center;
    display: block;
  }
}

@media (max-width: 700px) {
  .about-process {
    padding: 70px 0;
  }

  .about-process__container {
    padding: 42px 24px;
    border-radius: 24px;
  }

  .about-process__content h2 {
    font-size: 44px;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 28px 22px;
  }
}
/* ============================= */
/* 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;
}