/* ==========================================================================
   1. Contenedor general
   ========================================================================== */

.crt-contenido {
  width: 100%;
  max-width: 1164px;
  margin: 0 auto;
  padding: 0 20px 40px;
  box-sizing: border-box;
  font-family: var(--crt-font, "Noto Sans", sans-serif);
}

/* ==========================================================================
   2. Card de bienvenida al contenido
   ========================================================================== */

.crt-card {
  --crt-card-degradado-inicio: #3B8082;
  --crt-card-degradado-fin: #1B3F42;
  --crt-card-texto: #FFFFFF;
  --crt-card-texto-cuerpo: #1B3F42;

  width: 100%;
  max-width: 1164px;
  min-height: 131px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 1px solid #017977;
  font-family: var(--crt-font, "Noto Sans", sans-serif);
}

.crt-card__texto {
  font-family: inherit;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--crt-card-texto-cuerpo);
  margin: 0;
  text-align: center;
}

/* Espaciado respecto al bloque de tabs superior */
.crt-card {
  margin-top: 8px;
  margin-bottom: 28px;
}

/* ==========================================================================
   3. Texto de párrafo general
   ========================================================================== */

.crt-texto {
  font-family: inherit;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #1B1B1B;
  margin: 0 0 16px;
}

.crt-texto--espaciado {
  margin-bottom: 20px; 
}

/* ==========================================================================
   4. Subtítulos de sección
   ========================================================================== */

.crt-titulo-3 {
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: #1B1B1B;
  margin: 20px 0 4px;
}

.crt-titulo-3--compacto {
  margin-top: 18px;
  margin-bottom: 4px;
}

/* ==========================================================================
   5. Lista de datos de contacto (con íconos)
   ========================================================================== */

.crt-datos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 20px;
}

.crt-datos > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;  
  line-height: 140%;
  color: #000000; 
}

.crt-datos__icono {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   6. Enlaces
   ========================================================================== */

.crt-enlace {
  color: #1B1B1B;          /* antes #017977 (verde) */
  text-decoration: none;   /* antes underline */
}

.crt-enlace:hover {
  color: #1B1B1B;
  text-decoration: none;
}


/* ==========================================================================
   7. Logos finales
   ========================================================================== */

.crt-logos {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.crt-logos img {
  max-width: 100%;
  height: auto;
}