@font-face {
  font-family: "Panton";
  /* src: local("Panton"), url("../fonts/Panton-Regular.ttf") format("truetype"); */
  src:
    url("../fonts/Panton-Regular.woff2") format("woff2"),
    url("../fonts/Panton-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Panton Bold";
  src: url("../fonts/Panton Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Birthday";
  /* src: local("Birthday"), url("../fonts/Birthday.ttf") format("truetype"); */
  src: url("../fonts/Birthday.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* mejora rendimiento */
}

:root {
  --var-blanco: #ffffff;
  --fondo_1: #ecf2f7;
  --var-azul: #28497b;
  --var-azul-corp: #443b64;
  --var-uva: #7e57c5;
  --var-uva-2: #834ebf;
  --var-verde: #38d430;
}

/* Clases de padding personalizadas */
body {
  font-family: "Panton", "poppins", "Helvetica Neue", sans-serif;
  margin-top: 92px; /* 42px top-bar + ~56px navbar */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
}

/* ✅ Botón verde tipo píldora */
.top-bar {
  background-color: var(--var-azul);
  display: flex;
  justify-content: flex-start; /* los elementos empiezan a la izquierda */
  align-items: center;
  gap: 1rem; /* separación entre elementos */
  border-radius: 0px 0px 0px 32px;
}

.top-bar a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.top-bar a:hover {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.btn-intranet {
  position: relative;
  background-color: #35d32f;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0px 0px 32px 32px;
  font-size: 1.05rem;
  padding: 3px 4rem;
  border: none;
}

.btn-intranet:hover {
  background-color: var(--var-verde);
  text-decoration: none;
}

/* ⚪ Barra principal */
.navbar {
  background-color: var(--var-blanco);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.navbar img {
  max-height: 70px;
  width: auto;
}

.navbar-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0; /* eliminar márgenes por defecto */
  padding: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  font-size: 1.05rem;
  color: #28497b;
}

/* Mejoras para el menú colapsado en móviles */
@media (max-width: 991px) {
  .navbar {
    position: relative;
  }

  .collapse.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 0.5rem 0.5rem 0.9rem 0.5rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    z-index: 1050;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    align-items: stretch;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 0.5rem 0.5rem;
    border-radius: 8px;
    color: var(--var-azul-corp);
    background: transparent;
    text-align: left;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(68,59,100,0.06);
    color: var(--var-verde);
  }

  .navbar-toggler {
    z-index: 1060;
    border: 1px solid rgba(0,0,0,0.08);
  }

  .navbar-toggler-icon {
    background-image: none; /* use simple bars */
    display: inline-block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
  }

  /* Dropdown items inside collapsed menu: make them static and full width */
  .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    margin: 0.25rem 0 0 0;
    padding: 0;
  }

  .dropdown-item {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    color: var(--var-azul-corp);
  }
}

.navbar-nav .nav-link:hover {
  color: var(--var-verde);
}

/* 🔴 Botón de contacto */
.btn-contacto {
  background-color: #ff5152; /* rojo coral */
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 28px;
  border-radius: 25px; /* esquinas redondeadas */
  border: none;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); /* sombra suave realista */
}

.btn-contacto:hover {
  background-color: #e74c3c; /* rojo más oscuro al pasar el mouse */
  transform: translateY(1px); /* ligera animación */
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.btn-contacto:active {
  transform: translateY(2px);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  width: 100%;
  height: 220px;

  background-image: url("../imagen/_MG_1801.jpg");
  background-repeat: no-repeat;
  background-size: cover;

  /* 👇 CLAVE */
  background-position: 60% 42%;
  overflow: hidden;
}

/* 🔵 Sombra azulada */
.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 120, 0.45);
  /* box-shadow: inset 0 0 120px rgba(0, 80, 255, 0.4); */
  z-index: 1;
}

/* Contenido centrado */
.hero-content {
  position: relative;
  z-index: 2;
}

/* ✨ Texto con animación de entrada */
#typed-text {
  font-family: "Birthday", sans-serif;
  font-size: 3.2rem;
  text-shadow: 0 5px 12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-out forwards;
}

/* Animación de entrada */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 230px;
  }

  #typed-text {
    font-size: 2.5rem;
  }

  .social-icon img {
    width: 64px;
    height: 64px;
  }

  .social-item:active img {
    transform: scale(0.92);
    filter: brightness(0) saturate(100%);
  }

  .navbar img {
    max-height: 42px;
    margin: 5px 5px;
  }

  .top-bar {
    gap: 0.5rem; /* separación entre elementos */
  }

  .btn-intranet {
    border-radius: 0px 0px 12px 12px;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .btn-contacto {
    font-size: 0.9rem;
    padding: 6px 20px;
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
  }

  /* Reglas móviles adicionales (consolidadas) */
  .codigo-titulo {
    font-size: 1.8rem;
  }

  .codigo-text {
    font-size: 0.9rem;
  }

  .card-codigo-etica {
    border-radius: 15px;
    border-width: 2px !important;
  }

  .card-body {
    padding: 0.8rem !important;
  }

  .card-politicas {
    padding: 1rem 1rem;
  }
}

.contactanos {
  background: #ecf2f7;
  color: var(--var-azul-corp);
}

.unete {
  font-weight: 700;
  -webkit-text-stroke: 0.3px currentColor;
  letter-spacing: 0.03em;
}

/* SOCIAL */
.social-item span {
  color: var(--var-azul-corp); /* azul corporativo */
  font-weight: 700; /* negrita */
  font-size: 14px;
  letter-spacing: 0.6px;
}

.social-item {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon img {
  width: 128px;
  height: 128px;
  transition: filter 0.35s ease;
  will-change: transform;
}

@keyframes bounce-up {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-6px) scale(1.04);
  }
}

/* FACEBOOK */
.social-item.facebook:hover img {
  animation: bounce-up 0.35s ease-out forwards;
  filter: brightness(0) saturate(100%) invert(45%) sepia(32%) saturate(520%)
    hue-rotate(238deg) brightness(96%) contrast(104%);
}

/* LINKEDIN */
.social-item.linkedin:hover img {
  animation: bounce-up 0.45s ease forwards;
  filter: brightness(0) saturate(100%) invert(70%) sepia(90%) saturate(420%)
    hue-rotate(170deg) brightness(100%) contrast(102%);
}

/* COMPUTRABAJO */
.social-item.computrabajo:hover img {
  animation: bounce-up 0.45s ease forwards;
  filter: brightness(0) saturate(100%) invert(58%) sepia(70%) saturate(460%)
    hue-rotate(85deg) brightness(96%) contrast(105%);
}

/* TIKTOK */
.social-item.tiktok:hover img {
  animation: bounce-up 0.45s ease forwards;
  filter: brightness(0) invert(19%) sepia(93%) saturate(2200%)
    hue-rotate(330deg) brightness(100%) contrast(100%);
}

/* TEXTO FINAL */
.final-text {
  color: var(--var-azul-corp);
  max-width: 320px;
  line-height: 1.2;
}

.final-text strong {
  font-weight: 700; /* negrita */
  display: block;
}

.final-linea-img {
  width: 50%;
  height: auto;
}

.fs-7 {
  font-size: 0.875rem; /* 14px */
}

.fs-8 {
  font-size: 0.75rem; /* 12px */
}

.fs-9 {
  font-size: 0.625rem; /* 10px */
}

/* FORM CARD */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.form-title {
  color: #3e3564;
  font-weight: 700;
}

/* INPUTS */
.custom-input {
  border-radius: 10px;
  border: 1.5px solid var(--var-uva);
  padding: 10px 14px;
  font-size: 13px;
}

/* UPLOAD */
.upload-box {
  border: 1.5px solid var(--var-uva);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  color: #3e3564;
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 8px;
}

/* BOTÓN */
.btn-submit {
  background-color: #3e3564;
  color: #fff;
  border-radius: 20px;
  padding: 10px;
}

.btn-submit:hover {
  background-color: #2f2850;
}

/* TESTIMONIOS */
.testimonio {
  padding: 2.5rem 1rem;
  background-color: #fff;
}

.testimonio-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--var-azul-corp);
  margin-bottom: 2rem;
}

.testimonio-title span {
  color: var(--var-uva-2);
  font-weight: 700;
}

/* Ajustes header: espaciado y alineación para desktop según diseño */

.navbar-collapse {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mayor separación visual del logo y el nav */
.row.w-100 > .col-8.col-md-4.col-lg-3 {
  padding-left: 1rem;
}

.testimonio-card {
  background-color: #f2f5f8;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.testimonio-header {
  background-color: #7e57c5;
  color: #fff;
  padding: 0.5rem;
  line-height: 1;
}

.testimonio-header strong {
  display: block;
  font-weight: 700;
}

.testimonio-header span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.testimonio-text {
  padding: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.2;
  margin: 0px;
  text-align: justify;
  color: #000;
}

/* PIE DE PAGINA */
.footer-smasac {
  position: relative;
  margin: 0px;
  padding: 0px;
  background-color: var(--var-azul);
}

.footer-logo {
  max-width: 200px; /* ajusta según diseño */
  height: auto;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 2px;
  opacity: 0.8;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #ffffff;
  opacity: 0.85;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.7px;
  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--var-verde);
  transform: translateX(4px);
}

.footer-social a {
  font-size: 1.6rem;
  color: #ffffff;
  display: inline-block;
  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.footer-social a:hover {
  opacity: 1;
  color: var(--var-verde);
  transform: translateX(4px);
}

.footer-linea {
  position: absolute;
  top: 0; /* 🔑 se pega arriba */
  width: 30%;
  height: auto;
  margin: 0;
}

/* === ETICA SECTION === */
/* sección real */
.gobernanza-section {
  position: relative;
  background-color: var(--fondo_1);
}

/* imagen */
.gobernanza-img {
  width: 100%;
  height: auto;
  display: block;

  /* empuja la imagen hacia arriba */
  margin-top: -80px; /* AJUSTA ESTE VALOR */
}

/* texto encima */
.texto-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.texto-overlay h1 {
  color: #ffffff;
  font-size: 4.5rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.45);
  transform: translateX(-150px); /* desplaza 50px a la izquierda */
  opacity: 0;
  will-change: transform, opacity, filter;
  animation: slideFadeIn 900ms cubic-bezier(0.22, 0.98, 0.36, 0.99) 220ms both;
}

/* Alinear el título a la derecha dentro de la columna (dentro del container) */
.texto-overlay .container .col-lg-12,
.texto-overlay .container .col-md-12,
.texto-overlay .container .col-12 {
  display: flex;
  justify-content: flex-end;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .gobernanza-wrapper {
    max-height: 260px;
  }

  .gobernanza-img {
    margin-top: -60px;
  }

  .texto-overlay h2 {
    font-size: 1.8rem;
  }
}

/* Ajustes adicionales para gobernanza en pantallas pequeñas */
@media (max-width: 768px) {
  .gobernanza-img {
    margin-top: -40px;
  }

  .texto-overlay h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.8rem);
    transform: none;
    text-align: right;
    opacity: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,0.45);
    line-height: 1.05;
  }

  .texto-overlay {
    align-items: center;
    justify-content: flex-end;
  }

  .texto-overlay .container .col-lg-12,
  .texto-overlay .container .col-md-12,
  .texto-overlay .container .col-12 {
    justify-content: flex-end;
  }
}

@media (max-width: 420px) {
  .gobernanza-img {
    margin-top: 0;
  }

  .texto-overlay h1 {
    font-size: 1.5rem;
    line-height: 1.15;
    transform: none;
    padding: 0 0.5rem 0 0;
    text-align: right;
  }
}

/* Animación profesional de entrada para el título */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(28px) translateX(-150px) scale(0.995) skewY(1.2deg);
    filter: blur(4px);
    letter-spacing: -0.04em;
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) translateX(-150px) scale(1.005) skewY(0.3deg);
    filter: blur(0.6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(-150px) scale(1) skewY(0deg);
    filter: blur(0);
    letter-spacing: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .texto-overlay h1 {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: translateX(-150px);
    filter: none;
  }
}

/* === SECCIÓN CÓDIGO DE ÉTICA === */
.codigo-etica {
  background-color: var(--fondo_1);
  padding: 3rem 0;
}

/* Tarjeta Código de Ética */
.card-codigo-etica {
  border-radius: 100px 0px 0px 100px;
  overflow: hidden;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-left: 1rem;
  border-bottom: 2px solid var(--var-verde);
  border-left: 2px solid var(--var-verde);
}

.card-codigo-etica:hover {
  transform: translateY(-2px);
}

/* Título */
.codigo-titulo {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: var(--var-azul-corp);
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* Texto descriptivo */
.codigo-text {
  font-size: 0.98rem;
  color: var(--var-azul-corp);
  line-height: 1.4;
  text-align: justify;
  /* letter-spacing: 0.3px; */
}

/* Botón Código de Ética */
.btn-codigo-etica {
  background-color: var(--var-verde);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.22, 0.98, 0.36, 0.99);
  border: none;
  font-size: 0.95rem;
  box-shadow: 0 2px 4px #3b3b3b;
}

.btn-codigo-etica:hover {
  background-color: rgba(56, 212, 48, 0.85);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Wrapper circular para la imagen */
.imagen-circular-wrapper {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 20px solid var(--var-verde);
  box-shadow: inset 0 0 0 2px white;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Imagen */
.codigo-imagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

/* Ajustes responsivos específicos para la imagen circular (anulan valores fijos) */
@media (max-width: 768px) {
  .imagen-circular-wrapper {
    width: clamp(120px, 34vw, 200px);
    height: clamp(120px, 34vw, 200px);
    border-width: clamp(6px, 2vw, 12px);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 1; /* permitir que se reduzca en pantallas pequeñas */
    margin: 0.4rem auto; /* centrar en móviles */
  }

  .codigo-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
  }
  
}

/* === SECCIÓN POLÍTICAS CORPORATIVAS === */
.politicas-corporativas {
  background-color: var(--fondo_1);
  padding: 0.5rem 0;
}

/* Tarjeta contenedora */
.card-politicas {
  background-color: #ffffff;
  border-radius: 0px 50px 50px 0px;
  border-bottom: 2px solid var(--var-azul-corp);
  border-right: 2px solid var(--var-azul-corp);
  margin-right: 1rem;
  padding: 1.5rem 4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Título con acordeón */
.politicas-header {
  background-color: var(--var-azul-corp);
  border-radius: 8px;
  padding: 1rem 1rem;
  transition: all 0.3s ease;
}

.politicas-header:hover {
  box-shadow: 0 6px 20px rgba(68, 59, 100, 0.25);
}

.politicas-titulo {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* Tarjetas de políticas */
.politica-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 7px;
  padding: 1rem;
  margin: 0rem 4rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.22, 0.98, 0.36, 0.99);
  height: 100%;
}

.politica-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(68, 59, 100, 0.2);
  border-color: var(--var-azul-corp);
  background-color: rgba(68, 59, 100, 0.01);
}

.politica-titulo-card {
  color: var(--var-azul-corp);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.politica-texto {
  color: var(--var-azul-corp);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Botón Descargar */
.btn-descargar {
  background-color: var(--var-azul-corp);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.22, 0.98, 0.36, 0.99);
  border: 2px solid var(--var-azul-corp);
  font-size: 0.85rem;
  box-shadow: 0 3px 10px rgba(68, 59, 100, 0.2);
}

.btn-descargar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(68, 59, 100, 0.25);
}

/* Ajustes responsivos para la sección de políticas */
@media (max-width: 768px) {
  .card-politicas {
    padding: 0.6rem 0.6rem;
    border-radius: 15px;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .politicas-header {
    padding: 0.6rem 0.8rem;
  }

  .politicas-titulo {
    font-size: 1.15rem;
  }

  .politica-card {
    margin: 0 0 0.6rem 0;
    padding: 0.6rem;
    text-align: left;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  }

  .politica-titulo-card {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .politica-texto {
    font-size: 0.92rem;
    margin-bottom: 0.9rem;
    text-align: left;
    padding: 0 0.25rem;
  }

  .btn-descargar {
    display: block;
    width: 100%;
    padding: 8px 10px;
    font-size: 0.9rem;
    text-align: center;
  }
}

/* Sección Sugerencias e Inquietudes */
.sugerencias-inquietudes {
  background-color: #f8f8f8;
  border-left: 4px solid var(--var-azul-corp);
  padding: 2rem;
  border-radius: 8px;
}

.sugerencias-titulo {
  color: var(--var-azul-corp);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sugerencias-texto {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.sugerencias-texto strong {
  color: var(--var-azul-corp);
  font-weight: 700;
}

/* === SECCIÓN SUGERENCIAS E INQUIETUDES === */
.sugerencias-section {
  background-color: var(--fondo_1);
  padding: 4rem 0;
}

.sugerencias-titulo {
  color: var(--var-azul-corp);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.sugerencias-texto {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 1rem 1rem;
  padding: 0 3rem;
  text-align: justify;
  border-left: 4px solid var(--var-azul-corp);
}

.sugerencias-texto a {
  color: var(--var-azul-corp);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sugerencias-texto a:hover {
  color: var(--var-verde);
  text-decoration: underline;
}
